| // | |
| // Copyright © 2017 Arm Ltd. All rights reserved. | |
| // SPDX-License-Identifier: MIT | |
| // | |
| #pragma once | |
| #include <armnn/Tensor.hpp> | |
| #include <armnn/Descriptors.hpp> | |
| #include <boost/optional.hpp> | |
| #include <arm_compute/core/Error.h> | |
| namespace armnn | |
| { | |
| arm_compute::Status ClConvolution2dWorkloadValidate(const TensorInfo& input, | |
| const TensorInfo& output, | |
| const Convolution2dDescriptor& descriptor, | |
| const TensorInfo& weights, | |
| const boost::optional<TensorInfo>& biases); | |
| } //namespace armnn |