From 82b51482479951cf133c223eb81aae291cb4d590 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Tue, 24 Apr 2018 15:14:12 +0100 Subject: COMPMID-959: Sets memory manager to CLWinograd -Sets memory manager to Winograd functions -Marks CLGEMM inputs as unused if needed Change-Id: I425a3f864c756e0e2b4da895e1730b8822149ba8 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/128891 Tested-by: Jenkins Reviewed-by: Gian Marco Iodice Reviewed-by: Anthony Barbier --- src/graph/backends/CL/CLFunctionsFactory.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/graph') diff --git a/src/graph/backends/CL/CLFunctionsFactory.cpp b/src/graph/backends/CL/CLFunctionsFactory.cpp index ad73a797e3..ece63646ea 100644 --- a/src/graph/backends/CL/CLFunctionsFactory.cpp +++ b/src/graph/backends/CL/CLFunctionsFactory.cpp @@ -174,8 +174,8 @@ std::unique_ptr create_convolution_layer(ConvolutionLayerNode &node, if(conv_algorithm == ConvolutionMethod::WINOGRAD) { - std::tie(func, func_name) = create_named_function( - std::string("CLWinogradConvolutionLayer"), input, weights, biases, output, conv_info); + std::tie(func, func_name) = create_named_memory_managed_function( + std::string("CLWinogradConvolutionLayer"), mm, input, weights, biases, output, conv_info); } else if(conv_algorithm == ConvolutionMethod::DIRECT) { -- cgit v1.2.1