We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8b4c06 commit 653c1aeCopy full SHA for 653c1ae
mlir/include/mlir/Dialect/AMDGPU/Transforms/Passes.td
@@ -32,6 +32,12 @@ def AmdgpuEmulateAtomicsPass : Pass<"amdgpu-emulate-atomics"> {
32
33
def OptimizeSharedMemory : Pass<"amdgpu-optimize-shared-memory"> {
34
let summary = "Optimizes accesses to shared memory memrefs in order to reduce bank conflicts.";
35
+ let description = [{
36
+ This pass adds a transformation and pass to the AMDGPU dialect that
37
+ attempts to optimize reads/writes from a memref representing GPU shared
38
+ memory in order to avoid bank conflicts.
39
+ }];
40
+
41
let dependentDialects = [
42
"memref::MemRefDialect", "vector::VectorDialect"
43
];
0 commit comments