aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/CL')
-rw-r--r--src/core/CL/CLKernelLibrary.cpp3
-rw-r--r--src/core/CL/cl_kernels/direct_convolution.cl3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/core/CL/CLKernelLibrary.cpp b/src/core/CL/CLKernelLibrary.cpp
index 726efa3575..2652884912 100644
--- a/src/core/CL/CLKernelLibrary.cpp
+++ b/src/core/CL/CLKernelLibrary.cpp
@@ -901,12 +901,13 @@ std::string CLKernelLibrary::get_program_name(const std::string &kernel_name) co
void CLKernelLibrary::init(std::string kernel_path, cl::Context context, cl::Device device)
{
_compile_context = CLCompileContext(context, device);
- _kernel_path = kernel_path;
+ _kernel_path = kernel_path + "/";
}
void CLKernelLibrary::set_kernel_path(const std::string &kernel_path)
{
_kernel_path = std::move(kernel_path);
+ _kernel_path += "/";
}
cl::Context &CLKernelLibrary::context()
diff --git a/src/core/CL/cl_kernels/direct_convolution.cl b/src/core/CL/cl_kernels/direct_convolution.cl
index 1de3737965..dde024faa4 100644
--- a/src/core/CL/cl_kernels/direct_convolution.cl
+++ b/src/core/CL/cl_kernels/direct_convolution.cl
@@ -105,8 +105,9 @@
__kernel void direct_convolution_nhwc(
TENSOR4D(src, SRC_TENSOR_TYPE),
TENSOR4D(dst, DST_TENSOR_TYPE),
- TENSOR4D(wei, WEI_TENSOR_TYPE),
+ TENSOR4D(wei, WEI_TENSOR_TYPE)
#if defined(HAS_BIAS)
+ ,
VECTOR_DECLARATION(bia)
#endif // defined(HAS_BIAS)
)