blob: 8bd8999e5d091425cf6e74cf9f53c6af55bff812 [file] [log] [blame]
Teresa Charlin970f43b2019-07-01 13:51:07 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include "BaseIterator.hpp"
9#include <armnn/Tensor.hpp>
10
11#include <DataLayoutIndexed.hpp>
12
13namespace armnn
14{
15
16void Resize(Decoder<float>& in,
17 const TensorInfo& inputInfo,
18 Encoder<float>& out,
19 const TensorInfo& outputInfo,
20 armnnUtils::DataLayoutIndexed dataLayout = DataLayout::NCHW,
21 ResizeMethod resizeMethod = ResizeMethod::NearestNeighbor);
22
23} //namespace armnn