From 5a68b3f751bfc49831bbcde3d072a1389ac80d30 Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Mon, 17 Jul 2023 14:34:58 +0200 Subject: [PATCH] Rename `b-float16` to `bfloat16` in the launcher arg (just more usual). --- 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, }