aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/cl_kernels/activation_layer_quant.cl
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/CL/cl_kernels/activation_layer_quant.cl')
-rw-r--r--src/core/CL/cl_kernels/activation_layer_quant.cl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/CL/cl_kernels/activation_layer_quant.cl b/src/core/CL/cl_kernels/activation_layer_quant.cl
index dbaefacc13..c031c86a5e 100644
--- a/src/core/CL/cl_kernels/activation_layer_quant.cl
+++ b/src/core/CL/cl_kernels/activation_layer_quant.cl
@@ -86,7 +86,7 @@ __kernel void activation_layer_quant_f32(
#else // defined(O1_VAL)
data_flt = round(data_flt) * ((float)S1_VAL);
#endif // defined(O1_VAL)
- data_flt = ACTIVATION(ACT, float, data_flt, A_VAL, B_VAL);
+ data_flt = ACTIVATION(ACT, float, VEC_SIZE, data_flt, A_VAL, B_VAL);
#if defined(O2_VAL)
data0 = CONVERT_SAT(round(data_flt / ((float)S2_VAL)) + (float)O2_VAL, TYPE);