blob: d1818db1859cc3be1e748324c610fda3de728212 [file] [log] [blame]
Aron Virginas-Tarf03fcf02019-07-09 17:44:24 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include <armnn/ArmNN.hpp>
9
10namespace armnn_driver
11{
12
Aron Virginas-Tar366e0a62019-07-10 13:01:41 +010013bool IsDynamicOutput(const armnn::TensorInfo& outputInfo);
14
Sadik Armagan310d8ff2019-07-11 10:53:38 +010015armnn::TensorShape InferPadOutputShape(const armnn::TensorShape& inputShape,
16 const std::vector<std::pair<unsigned int, unsigned int>>& padList);
17
Aron Virginas-Tarf03fcf02019-07-09 17:44:24 +010018armnn::TensorShape InferPreluOutputShape(const armnn::TensorShape& inputShape, const armnn::TensorShape& alphaShape);
19
20} // namespace armnn_driver
21
22