blob: 982992a3639135860dc57b6b551ac1cf741afd9a [file] [log] [blame]
telsoa01c577f2c2018-08-31 09:22:23 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
David Beckecb56cd2018-09-05 12:52:57 +01003// SPDX-License-Identifier: MIT
telsoa01c577f2c2018-08-31 09:22:23 +01004//
5
6#pragma once
7
David Beck0dbe0ee2018-09-24 15:59:27 +01008#include <backends/neon/workloads/NeonWorkloadUtils.hpp>
telsoa01c577f2c2018-08-31 09:22:23 +01009
arovir01a6824102018-08-28 17:40:45 +010010#include <boost/optional.hpp>
11
telsoa01c577f2c2018-08-31 09:22:23 +010012namespace armnn
13{
14
15arm_compute::Status NeonDepthwiseConvolutionWorkloadValidate(const TensorInfo& input,
16 const TensorInfo& output,
17 const DepthwiseConvolution2dDescriptor& descriptor,
18 const TensorInfo& weights,
arovir01a6824102018-08-28 17:40:45 +010019 const boost::optional<TensorInfo>& biases);
telsoa01c577f2c2018-08-31 09:22:23 +010020
21} // namespace armnn