Skip to content

Commit 3865443

Browse files
committed
Run linter again
1 parent c563a34 commit 3865443

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test/test_core_aten_ops.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def diff_output(testcase, output1, output2, rtol, atol, equal_nan=True):
2929
output2_cpu = output2.detach().cpu()
3030
if output2_cpu.dtype != output1.dtype:
3131
output2_cpu = output2_cpu.to(output1.dtype)
32-
import pdb; pdb.set_trace()
32+
# import pdb; pdb.set_trace()
3333
testcase.assertTrue(
3434
torch.allclose(
3535
output1, output2_cpu, atol=atol, rtol=rtol, equal_nan=equal_nan))
@@ -3107,7 +3107,11 @@ def test_aten_native_group_norm_1(self):
31073107
0.0,
31083108
)
31093109
kwargs = dict()
3110-
run_export_and_compare(self, torch.ops.aten.native_group_norm, args, kwargs,
3110+
run_export_and_compare(
3111+
self,
3112+
torch.ops.aten.native_group_norm,
3113+
args,
3114+
kwargs,
31113115
rtol=0.001,
31123116
atol=0.01,
31133117
)

0 commit comments

Comments
 (0)