Skip to content

Commit

Permalink
Fix formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
chsigg committed Sep 12, 2024
1 parent a8b19fc commit 1ca5942
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/src/llvm.cc
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,8 @@ void init_triton_llvm(py::module &&m) {
// and break the lowering of some target specific intrinsics.
std::unique_ptr<TargetMachine> targetMachine = nullptr;
if (!arch.empty() && pluginFile.empty())
targetMachine = createTargetMachine(mod, arch, enable_fp_fusion, features);
targetMachine =
createTargetMachine(mod, arch, enable_fp_fusion, features);
PassBuilder pb(/*targetMachine=*/targetMachine.get(), tuningOptions,
std::nullopt, instrCbPtr);

Expand Down

0 comments on commit 1ca5942

Please sign in to comment.