File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
include/mlir/Dialect/GPU/Pipelines
test/Integration/Dialect/XeGPU/SIMT Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -63,11 +63,11 @@ struct GPUToNVVMPipelineOptions
6363// Options for the gpu to xevm pipeline.
6464struct 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{
Original file line number Diff line number Diff line change 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 \
You can’t perform that action at this time.
0 commit comments