pub unsafe fn log_normal_f32(
    gen: curandGenerator_t,
    out: *mut f32,
    num: usize,
    mean: f32,
    std: f32
) -> Result<(), CurandError>
Expand description

Fills out with num f32 values from a log normal distribution parameterized by mean and std.

See cuRAND docs

Safety

  1. generator must have been allocated and not freed.
  2. out point to num values