Skip to content

Commit 3ebee99

Browse files
committed
Address review comments.
Change `workitem` to `lane`.
1 parent 166e348 commit 3ebee99

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

mlir/include/mlir/Dialect/GPU/Pipelines/Passes.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ struct GPUToNVVMPipelineOptions
6363
// Options for the gpu to xevm pipeline.
6464
struct GPUToXeVMPipelineOptions
6565
: public PassPipelineOptions<GPUToXeVMPipelineOptions> {
66-
// XeGPU op granularity selection: workgroup | subgroup | workitem
66+
// XeGPU op granularity selection: workgroup | subgroup | lane
6767
PassOptions::Option<std::string> xegpuOpLevel{
6868
*this, "xegpu-op-level",
6969
llvm::cl::desc("Granularity of XeGPU operations to target: workgroup | "
70-
"subgroup | workitem"),
70+
"subgroup | lane"),
7171
llvm::cl::init("workgroup")};
7272
// General lowering controls.
7373
PassOptions::Option<bool> use64bitIndex{

mlir/test/Integration/Dialect/XeGPU/SIMT/simple_gemm.mlir

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: mlir-opt %s --gpu-lower-to-xevm-pipeline="xegpu-op-level=workitem" \
1+
// RUN: mlir-opt %s --gpu-lower-to-xevm-pipeline="xegpu-op-level=lane" \
22
// RUN: | mlir-runner \
33
// RUN: --shared-libs=%mlir_levelzero_runtime \
44
// RUN: --shared-libs=%mlir_runner_utils \

0 commit comments

Comments
 (0)