From 892b70a8bb338f0c10c06112c41f6c8e8c3495f9 Mon Sep 17 00:00:00 2001 From: Giorgio Arena Date: Wed, 30 Mar 2022 12:23:10 +0100 Subject: Fix embedded kernel header inclusion for dynamic fusion Resolves: COMPMID-5155 Signed-off-by: Giorgio Arena Change-Id: Ic16fb12bfa748cac92d73019d08eea53bf470c12 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/7354 Reviewed-by: SiCong Li Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- src/core/experimental/dynamic_fusion/ClKernelBuildingImpl/Common.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/core/experimental/dynamic_fusion/ClKernelBuildingImpl/Common.h') diff --git a/src/core/experimental/dynamic_fusion/ClKernelBuildingImpl/Common.h b/src/core/experimental/dynamic_fusion/ClKernelBuildingImpl/Common.h index 6e1291cdd5..4c720ea1aa 100644 --- a/src/core/experimental/dynamic_fusion/ClKernelBuildingImpl/Common.h +++ b/src/core/experimental/dynamic_fusion/ClKernelBuildingImpl/Common.h @@ -27,6 +27,7 @@ #define ARM_COMPUTE_EXPERIMENTAL_DYNAMICFUSION_IMPL_COMMON_H #include "arm_compute/core/CL/CLCompileContext.h" +#include "arm_compute/core/CL/CLKernelLibrary.h" #include "arm_compute/core/Error.h" #include "arm_compute/core/GPUTarget.h" #include "src/core/common/Macros.h" @@ -494,7 +495,11 @@ public: for(auto &header : headers_list) { +#if defined(EMBEDDED_KERNELS) + code += CLKernelLibrary::get().get_program(header).first; +#else // defined(EMBEDDED_KERNELS) code += "#include \"" + header + "\"\n"; +#endif // defined(EMBEDDED_KERNELS) } for(auto ¯os : additional_macros) -- cgit v1.2.1