From 17a9abc256685ca57040382613b5a105a25fca54 Mon Sep 17 00:00:00 2001 From: hanhanW Date: Fri, 20 Oct 2023 16:13:05 -0700 Subject: [PATCH] enable microkernels by default --- .../iree/compiler/Dialect/HAL/Target/LLVMCPU/LLVMCPUTarget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/LLVMCPUTarget.cpp b/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/LLVMCPUTarget.cpp index 42cff5ceb4602..ea5c984e8fd72 100644 --- a/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/LLVMCPUTarget.cpp +++ b/compiler/src/iree/compiler/Dialect/HAL/Target/LLVMCPU/LLVMCPUTarget.cpp @@ -49,7 +49,7 @@ static llvm::cl::opt clEnableCPUMicrokernels( "iree-llvmcpu-enable-microkernels", llvm::cl::desc( "Enables microkernel lowering for llvmcpu backend (experimental)"), - llvm::cl::init(false)); + llvm::cl::init(true)); static llvm::cl::opt clNativeVectorWidthInBytes( "iree-llvmcpu-native-vector-width-in-bytes",