aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/CL/functions/CLFullyConnectedLayer.h
diff options
context:
space:
mode:
authorMoritz Pflanzer <moritz.pflanzer@arm.com>2017-08-11 15:33:30 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commit768e9f180f4082a713a2eb9f3b98911c767d570b (patch)
tree2ebfab5530384e05b7ab695124e99380fad738b9 /arm_compute/runtime/CL/functions/CLFullyConnectedLayer.h
parent69d3341e6903c1ea87c46e39d6d3e64b2a0d5b4e (diff)
downloadComputeLibrary-768e9f180f4082a713a2eb9f3b98911c767d570b.tar.gz
COMPMID-417: Cleanup CL FullyConnectedLayer
Change-Id: Ic7191be1f136c6aad4037cf2ec4bc6d7d0e440d3 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/83713 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'arm_compute/runtime/CL/functions/CLFullyConnectedLayer.h')
-rw-r--r--arm_compute/runtime/CL/functions/CLFullyConnectedLayer.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/arm_compute/runtime/CL/functions/CLFullyConnectedLayer.h b/arm_compute/runtime/CL/functions/CLFullyConnectedLayer.h
index 64d56894d3..a29f68fcf1 100644
--- a/arm_compute/runtime/CL/functions/CLFullyConnectedLayer.h
+++ b/arm_compute/runtime/CL/functions/CLFullyConnectedLayer.h
@@ -98,11 +98,6 @@ public:
void run() override;
private:
- void configure_fc_fc_wb(const ICLTensor *input, const ICLTensor *weights, ICLTensor *output);
- void configure_fc_fc_nb(const ICLTensor *input, const ICLTensor *weights, ICLTensor *output);
- void configure_conv_fc_wb(const ICLTensor *input, const ICLTensor *weights, ICLTensor *output);
- void configure_conv_fc_nb(const ICLTensor *input, const ICLTensor *weights, ICLTensor *output);
-
CLIm2ColKernel _im2col_kernel;
CLFullyConnectedLayerReshapeWeights _reshape_weights_kernel;
CLGEMMInterleave4x4Kernel _interleave4x4_kernel;
@@ -112,8 +107,8 @@ private:
CLTensor _interleave4x4_output;
CLTensor _reshape_weights_output;
bool _are_weights_reshaped;
- bool _is_fc_after_conv;
bool _is_batched_fc_layer;
+ bool _linearize_input;
bool _accumulate_biases;
};
}