Skip to main content

gumbel

Macro gumbel 

Source
macro_rules! gumbel {
    () => { ... };
    (stream = $stream:expr) => { ... };
    (dtype = $dtype:ty) => { ... };
    (dtype = $dtype:ty, stream = $stream:expr) => { ... };
    (shape = $shape:expr) => { ... };
    (shape = $shape:expr, stream = $stream:expr) => { ... };
    (shape = $shape:expr, dtype = $dtype:ty) => { ... };
    (shape = $shape:expr, dtype = $dtype:ty, stream = $stream:expr) => { ... };
    (key = $key:expr) => { ... };
    (key = $key:expr, stream = $stream:expr) => { ... };
    (key = $key:expr, dtype = $dtype:ty) => { ... };
    (key = $key:expr, dtype = $dtype:ty, stream = $stream:expr) => { ... };
    (shape = $shape:expr, key = $key:expr) => { ... };
    (shape = $shape:expr, key = $key:expr, stream = $stream:expr) => { ... };
    (shape = $shape:expr, key = $key:expr, dtype = $dtype:ty) => { ... };
    (
        shape = $shape:expr, key = $key:expr, dtype = $dtype:ty, stream =
        $stream:expr
    ) => { ... };
    (shape = $shape:expr, key = $key:expr) => { ... };
    (shape = $shape:expr, key = $key:expr, stream = $stream:expr) => { ... };
    (shape = $shape:expr, key = $key:expr, dtype = $dtype:ty) => { ... };
    (
        shape = $shape:expr, key = $key:expr, dtype = $dtype:ty, stream =
        $stream:expr
    ) => { ... };
}
👎Deprecated since 0.26.0:

use with_stream or with_device around gumbel

Expand description

Macro generated for the function crate::random::gumbel. See the function documentation for more details.