From 885ce3354f4f0c853d453d0fddb54645c306a146 Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Fri, 19 Apr 2024 16:47:08 +0200 Subject: [PATCH] User argument should be gospel and never ignored. --- launcher/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/src/main.rs b/launcher/src/main.rs index d904f91b..b7dc0662 100644 --- a/launcher/src/main.rs +++ b/launcher/src/main.rs @@ -1378,7 +1378,7 @@ fn main() -> Result<(), LauncherError> { } let cuda_graphs = match (&args.cuda_graphs, &args.quantize) { - (Some(cuda_graphs), Some(_q)) => cuda_graphs.clone(), + (Some(cuda_graphs), _) => cuda_graphs.clone(), #[allow(deprecated)] ( None,