fix(launcher): Rename b-float16 to bfloat16 in the launcher arg (#621)

This commit is contained in:
Nicolas Patry 2023-07-17 18:38:16 +02:00 committed by GitHub
parent a2cf1bdb2f
commit bc2873246c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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,
} }