Skip to content

Commit 3197668

Browse files
Improve UT pass rate (#3130)
This is the last PR to improve UT pass rate for PVC rolling driver. There are 21 remaining failures, which are tracked in #2755 and #2968. Before: ``` debug: passed: 28, failed: 0, skipped: 20, xfailed: 0, total: 48, fixme: 0, pass rate (w/o xfailed): 58.33% interpreter: passed: 6364, failed: 0, skipped: 1, xfailed: 697, total: 7062, fixme: 0, pass rate (w/o xfailed): 99.98% all: passed: 18671, failed: 0, skipped: 23, xfailed: 1309, total: 20003, fixme: 48, pass rate (w/o xfailed): 99.88% ``` After: ``` debug: passed: 28, failed: 0, skipped: 19, xfailed: 0, total: 47, fixme: 0, pass rate (w/o xfailed): 59.57% interpreter: passed: 6365, failed: 0, skipped: 0, xfailed: 697, total: 7062, fixme: 0, pass rate (w/o xfailed): 100.0% all: passed: 18672, failed: 0, skipped: 21, xfailed: 1309, total: 20002, fixme: 48, pass rate (w/o xfailed): 99.89% ``` Signed-off-by: Whitney Tsang <[email protected]>
1 parent 49fd179 commit 3197668

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python/test/unit/language/test_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1702,7 +1702,7 @@ def change_value(X, BLOCK_SIZE: tl.constexpr, sem: tl.constexpr):
17021702

17031703

17041704
@pytest.mark.interpreter
1705-
@pytest.mark.skipif(not is_xpu() and (not is_cuda() or torch.cuda.get_device_capability()[0] < 9),
1705+
@pytest.mark.skipif(not (is_xpu() or is_interpreter()) and (not is_cuda() or torch.cuda.get_device_capability()[0] < 9),
17061706
reason="Requires compute capability >= 9 for NV")
17071707
def test_load_scope_sem_coop_grid_cta_not_one(device):
17081708

scripts/skiplist/default/debug.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
https://github.com/intel/intel-xpu-backend-for-triton/issues/2755
1+
# https://github.com/intel/intel-xpu-backend-for-triton/issues/2755
22
test/unit/test_debug.py::test_device_assert[True-True-True-False]
33
test/unit/test_debug.py::test_device_assert[True-False-None-False]
44
test/unit/test_debug.py::test_device_assert[False-True-True-False]

0 commit comments

Comments
 (0)