blob: 3da88515a2d9b456473fcadfa82333fc442953d5 [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
Matthew Bentham8800c002018-11-19 13:19:28 +000010#include <backendsCommon/DataLayoutIndexed.hpp>
11
telsoa014fcda012018-03-09 14:13:49 +000012namespace armnn
13{
14
James Conroy59540822018-10-11 12:39:05 +010015void ResizeBilinear(const float* in,
16 const TensorInfo& inputInfo,
17 float* out,
18 const TensorInfo& outputInfo,
19 DataLayoutIndexed dataLayout = DataLayout::NCHW);
telsoa014fcda012018-03-09 14:13:49 +000020
21} //namespace armnn