Skip to content

Commit

Permalink
Revert "Disable LLVM post processing (#2626)"
Browse files Browse the repository at this point in the history
This reverts commit eff7b30.
  • Loading branch information
alexbaden committed Nov 5, 2024
1 parent b58aaa8 commit 6645964
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/intel/backend/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ def make_llir(src, metadata, options):
paths = [path for (name, path) in options.extern_libs]
llvm.link_extern_libs(llvm_mod, paths)
intel.optimize_module(llvm_mod, llvm.OPTIMIZE_O3)
if os.getenv("TRITON_INTEL_ENABLE_POST_PROCESS_LLIR", "0") == "1":
if os.getenv("TRITON_INTEL_ENABLE_POST_PROCESS_LLIR", "1") == "1":
intel.post_process_llir(llvm_mod)

# Get some metadata
Expand Down

0 comments on commit 6645964

Please sign in to comment.