aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLGEMM.cpp
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2018-03-19 17:50:45 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:49:16 +0000
commitae4ce7b411d0f4809ac7d3d90fe89bdb2520dbf6 (patch)
tree07c3eea52265bbf8f230ab25f771dbc042bbf53b /src/runtime/CL/functions/CLGEMM.cpp
parent99ac60bca77e9977c844cc1293751d63ddc3065c (diff)
downloadComputeLibrary-ae4ce7b411d0f4809ac7d3d90fe89bdb2520dbf6.tar.gz
COMPMID-959: Manage memory on pure GEMM
Change-Id: I30e605db5e54266c6af70ac9fe602437966d9c73 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/125107 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Gian Marco Iodice <gianmarco.iodice@arm.com>
Diffstat (limited to 'src/runtime/CL/functions/CLGEMM.cpp')
-rw-r--r--src/runtime/CL/functions/CLGEMM.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/CL/functions/CLGEMM.cpp b/src/runtime/CL/functions/CLGEMM.cpp
index c1926a78d1..a06d94c1f5 100644
--- a/src/runtime/CL/functions/CLGEMM.cpp
+++ b/src/runtime/CL/functions/CLGEMM.cpp
@@ -138,7 +138,7 @@ void CLGEMM::configure(const ICLTensor *a, const ICLTensor *b, const ICLTensor *
// Manage intermediate buffers
_memory_group.manage(&_tmp_a);
- if(_reshape_b_only_on_first_run)
+ if(!_reshape_b_only_on_first_run)
{
_memory_group.manage(&_tmp_b);
}