Rename b-float16 to bfloat16 in the launcher arg (just more usual).

This commit is contained in:
Nicolas Patry 2023-07-17 14:34:58 +02:00
parent a2cf1bdb2f
commit 5a68b3f751

View File

@ -41,6 +41,7 @@ impl std::fmt::Display for Quantization {
#[derive(Clone, Copy, Debug, ValueEnum)] #[derive(Clone, Copy, Debug, ValueEnum)]
enum Dtype { enum Dtype {
Float16, Float16,
#[clap(name = "bfloat16")]
BFloat16, BFloat16,
} }