File tree Expand file tree Collapse file tree 4 files changed +2
-8
lines changed Expand file tree Collapse file tree 4 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -331,8 +331,8 @@ if(TRITON_BUILD_PYTHON_MODULE)
331
331
endif ()
332
332
333
333
configure_file (
334
- "${LLVM_SYSPATH} /bin/FileCheck"
335
- "${TRITON_WHEEL_DIR} /FileCheck"
334
+ "${LLVM_SYSPATH} /bin/FileCheck${CMAKE_EXECUTABLE_SUFFIX} "
335
+ "${TRITON_WHEEL_DIR} /FileCheck${CMAKE_EXECUTABLE_SUFFIX} "
336
336
COPYONLY )
337
337
338
338
endif ()
Original file line number Diff line number Diff line change 1
1
# Keep in sync with extra_require.tests from setup.py
2
- filecheck>=1.0.0; python_version >= '3.10'
3
2
lit
4
3
numpy
5
4
pytest
Original file line number Diff line number Diff line change @@ -275,12 +275,8 @@ run_minicore_tests() {
275
275
cd $TRITON_PROJ /python/test/unit
276
276
ensure_spirv_dis
277
277
278
- # Ignore language/test_frontend.py when Python < 3.10.
279
- # The test requires Python package filecheck which is not available for Python < 3.10.
280
- # https://github.com/intel/intel-xpu-backend-for-triton/issues/4443
281
278
TRITON_DISABLE_LINE_INFO=1 TRITON_TEST_SUITE=language \
282
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 \
283
- $( python -c ' import sys; print("--ignore=language/test_frontend.py" if sys.version_info < (3, 10) else "")' ) \
284
280
-k " not test_mxfp and not test_scaled_dot"
285
281
286
282
TRITON_DISABLE_LINE_INFO=1 TRITON_TEST_SUITE=subprocess \
Original file line number Diff line number Diff line change @@ -809,7 +809,6 @@ def get_git_version_suffix():
809
809
description = "A language and compiler for custom Deep Learning operations" ,
810
810
long_description = "" ,
811
811
install_requires = [
812
- "filecheck>=1.0.0; python_version >= '3.10'" ,
813
812
"setuptools>=78.1.0" ,
814
813
"importlib-metadata; python_version < '3.10'" ,
815
814
],
You can’t perform that action at this time.
0 commit comments