aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLGEMM.cpp
diff options
context:
space:
mode:
authorGian Marco <gianmarco.iodice@arm.com>2017-12-13 12:48:03 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:42:33 +0000
commitb5311a63d9bc1d8c9265aba5a9e031726cc512b3 (patch)
tree16e15017494450a0d53b740d3c8fd4656d5e578c /src/runtime/CL/functions/CLGEMM.cpp
parentacacc324216f466a548a69c2d8cc6540dc2769be (diff)
downloadComputeLibrary-b5311a63d9bc1d8c9265aba5a9e031726cc512b3.tar.gz
COMPMID-556 - Enabled optimized path for Bifrost in CLGEMM
- Enabled optimized path for Bifrost when the input matrices have not been reshaped Change-Id: I92c5591846ce7ea9116fecc434a0e859f3f2d579 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/113083 Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com> Tested-by: BSG Visual Compute Jenkins server to access repositories on http://mpd-gerrit.cambridge.arm.com <bsgcomp@arm.com>
Diffstat (limited to 'src/runtime/CL/functions/CLGEMM.cpp')
-rw-r--r--src/runtime/CL/functions/CLGEMM.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/runtime/CL/functions/CLGEMM.cpp b/src/runtime/CL/functions/CLGEMM.cpp
index a81d1138c0..ca0228fcdb 100644
--- a/src/runtime/CL/functions/CLGEMM.cpp
+++ b/src/runtime/CL/functions/CLGEMM.cpp
@@ -65,6 +65,9 @@ void CLGEMM::configure(const ICLTensor *a, const ICLTensor *b, const ICLTensor *
const ICLTensor *matrix_a = a;
const ICLTensor *matrix_b = b;
+ // Set the target for the matrix multiply kernel
+ _mm_kernel.set_target(CLScheduler::get().target());
+
if(_is_interleaved_transposed)
{
matrix_a = &_tmp_a;
@@ -95,9 +98,6 @@ void CLGEMM::configure(const ICLTensor *a, const ICLTensor *b, const ICLTensor *
// Configure transpose kernel
_transpose_kernel.configure(b, &_tmp_b);
-
- // Configure matrix multiply kernel
- _mm_kernel.set_target(CLScheduler::get().target());
}
_mm_kernel.configure(matrix_a, matrix_b, output, alpha, _is_interleaved_transposed);