From 5d6ac737d4a2f6e132efb814adf18d6fa95e4610 Mon Sep 17 00:00:00 2001 From: Nirvedh Date: Wed, 25 May 2022 19:05:06 +0000 Subject: [PATCH] Temporaily disable L1 cache bypass in MMA --- .../src/iree/compiler/Codegen/LLVMGPU/LLVMGPUVectorToGPU.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/src/iree/compiler/Codegen/LLVMGPU/LLVMGPUVectorToGPU.cpp b/compiler/src/iree/compiler/Codegen/LLVMGPU/LLVMGPUVectorToGPU.cpp index aa86e35c972d..d43bd09ad090 100644 --- a/compiler/src/iree/compiler/Codegen/LLVMGPU/LLVMGPUVectorToGPU.cpp +++ b/compiler/src/iree/compiler/Codegen/LLVMGPU/LLVMGPUVectorToGPU.cpp @@ -84,7 +84,7 @@ static void createAsyncGroups(func::FuncOp funcOp) { writeOp.getSource(), writeOp.getIndices(), readOp.getSource(), readOp.getIndices(), builder.getIndexAttr(readOp.getVectorType().getNumElements()), - /*bypassL1=*/builder.getUnitAttr()); + UnitAttr()); tokens.push_back(token); } // Create the group and wait for it right after.