aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/CL/functions/CLFullyConnectedLayer.h
diff options
context:
space:
mode:
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;
};
}