From 0268da2f3b2cca5bfd4ae95d669ed70d9296eb68 Mon Sep 17 00:00:00 2001 From: inocsin Date: Mon, 14 Feb 2022 15:28:01 +0800 Subject: [PATCH] fix: remove outdated member variables Signed-off-by: inocsin --- cpp/bin/torchtrtc/main.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/cpp/bin/torchtrtc/main.cpp b/cpp/bin/torchtrtc/main.cpp index a9fd1dab51..a437a5e133 100644 --- a/cpp/bin/torchtrtc/main.cpp +++ b/cpp/bin/torchtrtc/main.cpp @@ -460,9 +460,6 @@ int main(int argc, char** argv) { compile_settings.debug = true; } - if (use_strict_types) { - compile_settings.strict_types = true; - } if (allow_gpu_fallback) { compile_settings.device.allow_gpu_fallback = true; @@ -586,9 +583,6 @@ int main(int argc, char** argv) { compile_settings.workspace_size = args::get(workspace_size); } - if (max_batch_size) { - compile_settings.max_batch_size = args::get(max_batch_size); - } if (truncate_long_and_double) { compile_settings.truncate_long_and_double = true;