use crate::quant::scheme::{QuantScheme, QuantStore, QuantValue, ScaleDtype};
impl QuantScheme {
pub fn nvfp4() -> Self {
QuantScheme::default()
.per_block([16], ScaleDtype::UE4M3)
.per_tensor(ScaleDtype::F32)
.with_value(QuantValue::E2M1)
.with_store(QuantStore::PackedNative(0))
}
}