blob: 3958ed7afdf28a035ae05c7ece875702c95653ef [file] [log] [blame]
Narumol Prangnawarat4dc64a62019-09-16 17:00:22 +01001//
2// Copyright © 2019 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include "armnn/Tensor.hpp"
9#include "armnn/Descriptors.hpp"
10
11#include "Decoders.hpp"
12
13namespace armnn
14{
15
Inki Daed4619e22020-09-10 15:33:54 +090016template <typename OUT>
17void ArgMinMax(Decoder<float>& in, OUT *out, const TensorInfo& inputTensorInfo,
Narumol Prangnawarat4dc64a62019-09-16 17:00:22 +010018 const TensorInfo& outputTensorInfo, ArgMinMaxFunction function, int axis);
19
20} //namespace armnn
21