blob: f88b1a0a4e35fa5967e6a1d20d6c3459a3d4e5ab [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// See LICENSE file in the project root for full license information.
4//
5
6#pragma once
7
8#include <armnn/Descriptors.hpp>
9#include <armnn/Tensor.hpp>
10
11namespace armnn
12{
13
14/// Computes the Pooling2d operation
15void Pooling2d(const float* in,
16 float* out,
17 const TensorInfo& inputInfo,
18 const TensorInfo& outputInfo,
19 const Pooling2dDescriptor& params);
20
21} //namespace armnn