From 3e80c7fa601d5996e8ada3b2f6c69327f066ec17 Mon Sep 17 00:00:00 2001 From: Anton Lokhmotov Date: Mon, 20 Nov 2017 11:02:10 +0000 Subject: COMPMID-661: Optimize FC layer with 2 new Bifrost kernels and LWS tuning (#33) Change-Id: Ie56ac88dff5ff339572cec562e8cd62dc7f0aa8b Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/109805 Tested-by: BSG Visual Compute Jenkins server to access repositories on http://mpd-gerrit.cambridge.arm.com Reviewed-by: Gian Marco Iodice Reviewed-by: Anthony Barbier --- arm_compute/runtime/CL/functions/CLFullyConnectedLayer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arm_compute/runtime/CL/functions/CLFullyConnectedLayer.h') diff --git a/arm_compute/runtime/CL/functions/CLFullyConnectedLayer.h b/arm_compute/runtime/CL/functions/CLFullyConnectedLayer.h index f71e2a33f9..0fa22143cf 100644 --- a/arm_compute/runtime/CL/functions/CLFullyConnectedLayer.h +++ b/arm_compute/runtime/CL/functions/CLFullyConnectedLayer.h @@ -81,8 +81,8 @@ public: void run() override; private: - void configure_fc_fc(const ICLTensor *input, const ICLTensor *weights, ICLTensor *output); - void configure_conv_fc(const ICLTensor *input, const ICLTensor *weights, ICLTensor *output); + void configure_fc_fc(const ICLTensor *input, const ICLTensor *weights, ICLTensor *output, const GPUTarget gpu_target); + void configure_conv_fc(const ICLTensor *input, const ICLTensor *weights, ICLTensor *output, const GPUTarget gpu_target); CLMemoryGroup _memory_group; CLIm2ColKernel _im2col_kernel; -- cgit v1.2.1