aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/cpu/operators/CpuFullyConnected.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/cpu/operators/CpuFullyConnected.h')
-rw-r--r--src/runtime/cpu/operators/CpuFullyConnected.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/runtime/cpu/operators/CpuFullyConnected.h b/src/runtime/cpu/operators/CpuFullyConnected.h
index 954a7b7ffc..498ceae68d 100644
--- a/src/runtime/cpu/operators/CpuFullyConnected.h
+++ b/src/runtime/cpu/operators/CpuFullyConnected.h
@@ -128,14 +128,16 @@ private:
std::unique_ptr<CpuGemm> _mm_gemm;
std::unique_ptr<CpuGemmLowpMatrixMultiplyCore> _mm_gemmlowp;
- TensorInfo _flattened_src;
- TensorInfo _converted_weights;
- TensorInfo _reshaped_weights;
+ TensorInfo _flattened_src;
+ TensorInfo _converted_weights;
+ TensorInfo _reshaped_weights;
+ TensorInfo _trans_weights;
+ AuxTensorIdx _trans_weights_idx;
experimental::MemoryRequirements _aux_mem;
- bool _are_weights_converted;
- bool _are_weights_reshaped;
+ bool _needs_weights_conversion;
+ bool _needs_weights_reshape;
bool _is_fc_after_conv;
bool _is_quantized_asymmetric;
bool _is_prepared;