Skip to content

Commit c509ec4

Browse files
committed
Fix lint error
1 parent 172c3ec commit c509ec4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/xpu/test_decomp.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ def normalize_op_input_output(f, sample, requires_grad=True):
431431
"bernoulli",
432432
), # bernoulli is a function of randomness, so couldn't do cross-reference.
433433
# XPU specific exclude cases
434-
# ("xpu", None, "some_xpu_specific_op"), # 根据需要添加 XPU 特定的排除项
434+
# ("xpu", None, "some_xpu_specific_op"),
435435
}
436436

437437
CROSS_REF_BACKWARD_EXCLUDE_SET = {
@@ -444,7 +444,7 @@ def normalize_op_input_output(f, sample, requires_grad=True):
444444
"bernoulli",
445445
), # bernoulli is a function of randomness, so couldn't do cross-reference.
446446
# XPU specific backward exclude cases
447-
# ("xpu", torch.float16, "nn.functional.some_op"), # 根据需要添加
447+
# ("xpu", torch.float16, "nn.functional.some_op"),
448448
}
449449

450450
all_decomposed = set()

0 commit comments

Comments
 (0)