[FRONTEND][BACKEND] no longer using indices for loops (#1370)

This commit is contained in:
Philippe Tillet
2023-03-19 14:57:50 -07:00
committed by GitHub
parent 28e05c9799
commit e4b2d1bc3d
8 changed files with 7 additions and 137 deletions

View File

@@ -69,7 +69,7 @@ def get_llvm_package_info():
use_assert_enabled_llvm = check_env_flag("TRITON_USE_ASSERT_ENABLED_LLVM", "False")
release_suffix = "assert" if use_assert_enabled_llvm else "release"
name = f'llvm+mlir-17.0.0-x86_64-{system_suffix}-{release_suffix}'
version = "llvm-17.0.0-8e5a41e8271f"
version = "llvm-17.0.0-2538e550420f"
url = f"https://github.com/ptillet/triton-llvm-releases/releases/download/{version}/{name}.tar.xz"
return Package("llvm", name, url, "LLVM_INCLUDE_DIRS", "LLVM_LIBRARY_DIR", "LLVM_SYSPATH")