10 #include <arm_compute/runtime/IFunction.h>
11 #include <arm_compute/runtime/Tensor.h>
12 #include <arm_compute/runtime/MemoryManagerOnDemand.h>
20 const TensorInfo& output,
21 const Convolution2dDescriptor& descriptor,
22 const TensorInfo& weights,
23 const Optional<TensorInfo>& biases,
24 bool isFastMathEnabled =
false,
25 const ActivationDescriptor* activationDescriptor =
nullptr);
34 std::shared_ptr<arm_compute::MemoryManagerOnDemand>& memoryManager,
35 const bool isFastMathENabled =
false);
42 std::unique_ptr<arm_compute::IFunction> m_ConvolutionLayer;
44 mutable std::unique_ptr<arm_compute::Tensor> m_KernelTensor;
45 mutable std::unique_ptr<arm_compute::Tensor> m_BiasTensor;
48 arm_compute::ConvolutionMethod m_ConvolutionMethod;
49 mutable bool prepared =
false;