From e95c37d5b941f78cc38f2a1223c93da40342879f Mon Sep 17 00:00:00 2001 From: sunxinlei Date: Mon, 4 Mar 2024 10:55:29 +0800 Subject: [PATCH] change NPU_ASD_SIGMA_THRESH --- torch_npu/asd/silent_fault_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torch_npu/asd/silent_fault_data.py b/torch_npu/asd/silent_fault_data.py index 6066b80549..fdb894244d 100644 --- a/torch_npu/asd/silent_fault_data.py +++ b/torch_npu/asd/silent_fault_data.py @@ -17,7 +17,7 @@ def parse_thresh(env_var_name, default_value, min_value): def get_thresh(): upper_thresh = parse_thresh("NPU_ASD_UPPER_THRESH", "1000000,10000", 3) - sigma_thresh = parse_thresh("NPU_ASD_SIGMA_THRESH", "100000,100", 3) + sigma_thresh = parse_thresh("NPU_ASD_SIGMA_THRESH", "100000,5000", 3) return upper_thresh, sigma_thresh -- Gitee