pub trait NormalFill<T> {
    // Required method
    unsafe fn fill(
        self,
        o: *mut T,
        n: usize,
        m: T,
        s: T
    ) -> Result<(), CurandError>;
}
Expand description

Fill with normally distributed numbers of type T.

Required Methods§

source

unsafe fn fill(self, o: *mut T, n: usize, m: T, s: T) -> Result<(), CurandError>

Safety

This inherits the unsafe from methods in generate.

Implementors§