From bc2873246cd32800c8feb0bcdec7398420556d68 Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Mon, 17 Jul 2023 18:38:16 +0200 Subject: [PATCH] fix(launcher): Rename `b-float16` to `bfloat16` in the launcher arg (#621) --- launcher/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/launcher/src/main.rs b/launcher/src/main.rs index d690a7c4..113877fa 100644 --- a/launcher/src/main.rs +++ b/launcher/src/main.rs @@ -41,6 +41,7 @@ impl std::fmt::Display for Quantization { #[derive(Clone, Copy, Debug, ValueEnum)] enum Dtype { Float16, + #[clap(name = "bfloat16")] BFloat16, }