Skip to content

Commit ae77bfa

Browse files
committed
Run linter again
1 parent 0fd311a commit ae77bfa

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))
@@ -3098,7 +3098,11 @@ def test_aten_native_group_norm_1(self):
30983098
0.0,
30993099
)
31003100
kwargs = dict()
3101-
run_export_and_compare(self, torch.ops.aten.native_group_norm, args, kwargs,
3101+
run_export_and_compare(
3102+
self,
3103+
torch.ops.aten.native_group_norm,
3104+
args,
3105+
kwargs,
31023106
rtol=0.001,
31033107
atol=0.01,
31043108
)

0 commit comments

Comments
 (0)