File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 13
13
from executorch .backends .arm .test .test_models import TosaProfile
14
14
from executorch .backends .arm .test .tester .arm_tester import ArmBackendSelector , ArmTester
15
15
16
+ logger = logging .getLogger (__name__ )
17
+ logger .setLevel (logging .INFO )
18
+
16
19
"""
17
20
This file contain unit tests where conv are combined with other ops.
18
21
"""
@@ -145,7 +148,7 @@ def _test_conv_combo_tosa_MI_pipeline(
145
148
if common .TOSA_REF_MODEL_INSTALLED :
146
149
tester .run_method ().compare_outputs ()
147
150
else :
148
- common . logger .warning (
151
+ logger .warning (
149
152
"TOSA ref model tool not installed, skip numerical correctness tests"
150
153
)
151
154
@@ -175,7 +178,7 @@ def _test_conv_combo_tosa_BI_pipeline(
175
178
if common .TOSA_REF_MODEL_INSTALLED :
176
179
tester .run_method ().compare_outputs (atol = atol , rtol = rtol , qtol = 1 )
177
180
else :
178
- common . logger .warning (
181
+ logger .warning (
179
182
"TOSA ref model tool not installed, skip numerical correctness tests"
180
183
)
181
184
You can’t perform that action at this time.
0 commit comments