From 781c86d0fd667f36c53e167def7ad75233e33336 Mon Sep 17 00:00:00 2001 From: Romaric Jodin Date: Fri, 25 Oct 2024 13:34:24 +0200 Subject: [PATCH] integer_dot_product: add missing define (#1412) --- lib/Compiler.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Compiler.cpp b/lib/Compiler.cpp index 74f50648e..e020027f0 100644 --- a/lib/Compiler.cpp +++ b/lib/Compiler.cpp @@ -369,6 +369,7 @@ int SetCompilerInstanceOptions( instance.getPreprocessorOpts().addMacroDef( "cl_arm_integer_dot_product_accumulate_saturate_int8"); } + instance.getPreprocessorOpts().addMacroDef("cl_khr_integer_dot_product"); for (auto define : Defines) { instance.getPreprocessorOpts().addMacroDef(define);