Skip to content

Commit

Permalink
[LLVMGPU] Turn on the vector distribution pipeline by default (iree-o…
Browse files Browse the repository at this point in the history
…rg#17291)

All known outstanding compilation failures with this pipeline have been
resolved, so now is a good time to turn it on by default to start
getting the predictable good performance for AMD gpu's w/ mma intrinsics
like CDNA and RDNA cards.
  • Loading branch information
qedawkins committed May 6, 2024
1 parent 792f14d commit d5e479d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ namespace mlir::iree_compiler {
llvm::cl::opt<bool> clGPUEnableVectorDistribution(
"iree-codegen-llvmgpu-use-vector-distribution",
llvm::cl::desc("enable the usage of the vector distribution pipeline"),
llvm::cl::init(false));
llvm::cl::init(true));

llvm::cl::opt<bool> clGPUEnableTransformDialectJit(
"iree-codegen-llvmgpu-enable-transform-dialect-jit",
Expand Down

0 comments on commit d5e479d

Please sign in to comment.