blob: 814a0f22571b33a9ce2628eaa56669f2106a579e [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
David Beckecb56cd2018-09-05 12:52:57 +01003// SPDX-License-Identifier: MIT
telsoa014fcda012018-03-09 14:13:49 +00004//
5
6#pragma once
7
8#include <armnn/Tensor.hpp>
9
Matteo Martincigh21350152018-11-28 16:22:22 +000010#include <DataLayoutIndexed.hpp>
Matthew Bentham8800c002018-11-19 13:19:28 +000011
telsoa014fcda012018-03-09 14:13:49 +000012namespace armnn
13{
14
Matteo Martincigh21350152018-11-28 16:22:22 +000015void ResizeBilinear(const float* in,
16 const TensorInfo& inputInfo,
17 float* out,
18 const TensorInfo& outputInfo,
19 armnnUtils::DataLayoutIndexed dataLayout = DataLayout::NCHW);
telsoa014fcda012018-03-09 14:13:49 +000020
21} //namespace armnn