macro_rules! quantize {
($w:expr) => { ... };
($w:expr, stream = $stream:expr) => { ... };
($w:expr, group_size = $group_size:expr) => { ... };
($w:expr, group_size = $group_size:expr, stream = $stream:expr) => { ... };
($w:expr, bits = $bits:expr) => { ... };
($w:expr, bits = $bits:expr, stream = $stream:expr) => { ... };
($w:expr, group_size = $group_size:expr, bits = $bits:expr) => { ... };
(
$w:expr, group_size = $group_size:expr, bits = $bits:expr, stream =
$stream:expr
) => { ... };
($w:expr, group_size = $group_size:expr, bits = $bits:expr) => { ... };
(
$w:expr, group_size = $group_size:expr, bits = $bits:expr, stream =
$stream:expr
) => { ... };
}
Expand description
Macro generated for the function crate::ops::quantize
. See the function documentation for more details.