pub trait UniformFill<T> {
    // Required method
    unsafe fn fill(self, out: *mut T, num: usize) -> Result<(), CurandError>;
}
Expand description

Fill with uniform distributed numbers of type T.

Required Methods§

source

unsafe fn fill(self, out: *mut T, num: usize) -> Result<(), CurandError>

Safety

This inherits the unsafe from methods in generate.

Implementors§