aboutsummaryrefslogtreecommitdiff
path: root/src/gpu/cl/operators/ClMatMul.cpp
diff options
context:
space:
mode:
authorAnitha Raj <anitha.raj@arm.com>2023-11-21 11:19:50 +0000
committerAnitha Raj <anitha.raj@arm.com>2023-11-21 11:21:40 +0000
commit69766d60896e429f27ac094010ae1f30ebbdc630 (patch)
tree9768f0366ac3f87832f8102c5d72974547de2edb /src/gpu/cl/operators/ClMatMul.cpp
parent26c68a0e5f555e316cab18352fa3b62f22af8bfb (diff)
downloadComputeLibrary-69766d60896e429f27ac094010ae1f30ebbdc630.tar.gz
Revert "Fix various coverity issues"v23.11branches/arm_compute_23_11
This reverts commit 26c68a0e5f555e316cab18352fa3b62f22af8bfb. Signed-off-by: Anitha Raj <anitha.raj@arm.com> Change-Id: I3a71762d1fa8b0a97ebf21fa1c1e4da94d39e887
Diffstat (limited to 'src/gpu/cl/operators/ClMatMul.cpp')
-rw-r--r--src/gpu/cl/operators/ClMatMul.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gpu/cl/operators/ClMatMul.cpp b/src/gpu/cl/operators/ClMatMul.cpp
index 43303001d0..9962ee550a 100644
--- a/src/gpu/cl/operators/ClMatMul.cpp
+++ b/src/gpu/cl/operators/ClMatMul.cpp
@@ -91,6 +91,8 @@ MatMulKernelType get_matmul_kernel(const ITensorInfo *lhs,
return MatMulKernelType::NATIVE_FP;
}
+
+ return is_quantized ? MatMulKernelType::NATIVE_QUANTIZED : MatMulKernelType::NATIVE_FP;
}
} // namespace
using namespace arm_compute::opencl::kernels;