From 52241ff7317e9f677c9e38314e0a44773aa79a47 Mon Sep 17 00:00:00 2001 From: yang-minghai22 Date: Mon, 23 Oct 2023 09:35:19 +0800 Subject: [PATCH] update accuracy_checker overflow check param --- .../api_accuracy_checker/run_ut/run_overflow_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debug/accuracy_tools/api_accuracy_checker/run_ut/run_overflow_check.py b/debug/accuracy_tools/api_accuracy_checker/run_ut/run_overflow_check.py index 7c0fa0f6a6..f384463cbc 100644 --- a/debug/accuracy_tools/api_accuracy_checker/run_ut/run_overflow_check.py +++ b/debug/accuracy_tools/api_accuracy_checker/run_ut/run_overflow_check.py @@ -121,7 +121,7 @@ def _run_ut_parser(parser): help=" The api param tool backward result file: generate from api param tool, " "a json file.", required=False) - parser.add_argument("-c", "--jit_compile", dest="jit_compile", help=" whether to turn on jit compile", + parser.add_argument("-j", "--jit_compile", dest="jit_compile", help=" whether to turn on jit compile", default=False, required=False) parser.add_argument("-d", "--device", dest="device_id", type=int, help=" set NPU device id to run ut", default=0, required=False) -- Gitee