[Triton-MLIR][FRONTEND] Remove the dangling check-triton call in setup.py (#796)

This commit is contained in:
Yan Chunwei
2022-10-24 09:26:18 +08:00
committed by GitHub
parent bb0f9235d1
commit 1bf59d315c

View File

@@ -125,11 +125,6 @@ class CMakeBuild(build_ext):
subprocess.check_call(["cmake", self.base_dir] + cmake_args, cwd=self.build_temp, env=env)
subprocess.check_call(["cmake", "--build", "."] + build_args, cwd=self.build_temp)
# run tests. Note: this depends on llvm-lit
# -DLLVM_EXTERNAL_LIT=<path-to-lit.py>
# Note: get_llvm_lit_path(...) in llvm/cmake/modules/AddLLVM.cmake
subprocess.call(["cmake", "--build", ".", "--target", "check-triton"], cwd=self.build_temp, env=env)
setup(
name="triton",