aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/ICLSimple3DKernel.cpp
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2017-11-27 11:18:34 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:41:17 +0000
commit11f099921570422e8ee1c02ecfda44201ceec092 (patch)
tree334e0cf7079f68f399a22047869788b49f9c81ba /src/core/CL/ICLSimple3DKernel.cpp
parent27066c2bed8fb88843308a70f375fd49835edd55 (diff)
downloadComputeLibrary-11f099921570422e8ee1c02ecfda44201ceec092.tar.gz
COMPMID-556: Fix lws_hint CLSoftmaxLayer
Change-Id: I15347bcfc68d76d47efa06b6036e1ed81548d227 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/110678 Tested-by: BSG Visual Compute Jenkins server to access repositories on http://mpd-gerrit.cambridge.arm.com <bsgcomp@arm.com> Reviewed-by: Gian Marco Iodice <gianmarco.iodice@arm.com>
Diffstat (limited to 'src/core/CL/ICLSimple3DKernel.cpp')
-rw-r--r--src/core/CL/ICLSimple3DKernel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/CL/ICLSimple3DKernel.cpp b/src/core/CL/ICLSimple3DKernel.cpp
index 7b0d011b3e..0bd9d155cf 100644
--- a/src/core/CL/ICLSimple3DKernel.cpp
+++ b/src/core/CL/ICLSimple3DKernel.cpp
@@ -41,7 +41,7 @@ void ICLSimple3DKernel::run(const Window &window, cl::CommandQueue &queue)
unsigned int idx = 0;
add_3D_tensor_argument(idx, _input, slice);
add_3D_tensor_argument(idx, _output, slice);
- enqueue(queue, *this, slice);
+ enqueue(queue, *this, slice, _lws_hint);
}
while(window.slide_window_slice_3D(slice));
}