blob: eec432be86cfb56ed095fb26b9f56c602eef38a3 [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
8#include "backends/NeonWorkloadUtils.hpp"
9
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