We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b60fd65 commit 2e4952dCopy full SHA for 2e4952d
scripts/test-triton.sh
@@ -277,7 +277,7 @@ run_minicore_tests() {
277
278
TRITON_DISABLE_LINE_INFO=1 TRITON_TEST_SUITE=language \
279
run_pytest_command -vvv -n ${PYTEST_MAX_PROCESSES:-8} --device xpu language/ --ignore=language/test_line_info.py --ignore=language/test_subprocess.py --ignore=language/test_warp_specialization.py \
280
- $(python -c 'import sys; if sys.version_info < (3, 10): print("--ignore=language/test_frontend.py")') \
+ $(python -c 'import sys; print("--ignore=language/test_frontend.py" if sys.version_info < (3, 10) else "")') \
281
-k "not test_mxfp and not test_scaled_dot"
282
283
TRITON_DISABLE_LINE_INFO=1 TRITON_TEST_SUITE=subprocess \
0 commit comments