From 63ad5cf1dd6096781fad31167d16f24b80929669 Mon Sep 17 00:00:00 2001 From: louyujing Date: Mon, 20 Nov 2023 07:48:53 +0000 Subject: [PATCH] update debug/accuracy_tools/ptdbg_ascend/src/python/ptdbg_ascend/debugger/precision_debugger.py. Signed-off-by: louyujing --- .../src/python/ptdbg_ascend/debugger/precision_debugger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debug/accuracy_tools/ptdbg_ascend/src/python/ptdbg_ascend/debugger/precision_debugger.py b/debug/accuracy_tools/ptdbg_ascend/src/python/ptdbg_ascend/debugger/precision_debugger.py index b2cfdaba4..69a51fbf5 100644 --- a/debug/accuracy_tools/ptdbg_ascend/src/python/ptdbg_ascend/debugger/precision_debugger.py +++ b/debug/accuracy_tools/ptdbg_ascend/src/python/ptdbg_ascend/debugger/precision_debugger.py @@ -41,7 +41,7 @@ class PrecisionDebugger: hook_dict = {"dump": self.configure_full_dump, "overflow_check": self.configure_overflow_dump} return hook_dict.get(hook_name, lambda: ValueError("hook name {} is not in ['dump', 'overflow_check']".format(hook_name))) - def configure_full_dump(self, mode='api_stack', scope=None, api_list=None, filter_switch=Const.ON, + def configure_full_dump(self, mode='api_stack', scope=None, api_list=None, filter_switch=Const.OFF, input_output_mode=[Const.ALL], acl_config=None, backward_input=None, summary_only=False): scope = scope or [] api_list = api_list or [] -- Gitee