aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/NEON/functions/NEFullyConnectedLayer.h
diff options
context:
space:
mode:
authorMoritz Pflanzer <moritz.pflanzer@arm.com>2017-08-09 11:43:18 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commit484e7b3724c0e77751b5bed05180271fd5376e5d (patch)
tree1ff3fa4bd80b1aef91086ace9b0c8f006445a217 /arm_compute/runtime/NEON/functions/NEFullyConnectedLayer.h
parent768e9f180f4082a713a2eb9f3b98911c767d570b (diff)
downloadComputeLibrary-484e7b3724c0e77751b5bed05180271fd5376e5d.tar.gz
COMPMID-417: Cleanup NEON FullyConnectedLayer
Change-Id: Ie02a0a1a28ca2771e29a5e6552242caf0f6db1cf Reviewed-on: http://mpd-gerrit.cambridge.arm.com/83555 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'arm_compute/runtime/NEON/functions/NEFullyConnectedLayer.h')
-rw-r--r--arm_compute/runtime/NEON/functions/NEFullyConnectedLayer.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/arm_compute/runtime/NEON/functions/NEFullyConnectedLayer.h b/arm_compute/runtime/NEON/functions/NEFullyConnectedLayer.h
index af571d1057..08099b8539 100644
--- a/arm_compute/runtime/NEON/functions/NEFullyConnectedLayer.h
+++ b/arm_compute/runtime/NEON/functions/NEFullyConnectedLayer.h
@@ -97,11 +97,6 @@ public:
void run() override;
private:
- void configure_fc_fc_wb(const ITensor *input, const ITensor *weights, ITensor *output);
- void configure_fc_fc_nb(const ITensor *input, const ITensor *weights, ITensor *output);
- void configure_conv_fc_wb(const ITensor *input, const ITensor *weights, ITensor *output);
- void configure_conv_fc_nb(const ITensor *input, const ITensor *weights, ITensor *output);
-
NEIm2ColKernel _im2col_kernel;
NEFullyConnectedLayerReshapeWeights _reshape_weights_kernel;
NEGEMMInterleave4x4Kernel _interleave4x4_kernel;
@@ -111,8 +106,8 @@ private:
Tensor _interleave4x4_output;
Tensor _reshape_weights_output;
bool _are_weights_reshaped;
- bool _is_fc_after_conv;
bool _is_batched_fc_layer;
+ bool _linearize_input;
bool _accumulate_biases;
};
}