ArmNN
 23.08
Power.hpp
Go to the documentation of this file.
1 //
2 // Copyright © 2023 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 #include <iostream>
9 
10 namespace armnn
11 {
12 
13 template<typename T>
14 struct power
15 {
16  typedef T result_type;
18 
19  T
20  operator()(const T& input1, const T& input2) const
21  {
22  T power = armnn::numeric_cast<T>(std::pow(static_cast<float>(input1), static_cast<float>(input2)));
23  return power;
24  }
25 };
26 
27 } //namespace armnn
armnn::power
Definition: Power.hpp:14
armnn::power::operator()
T operator()(const T &input1, const T &input2) const
Definition: Power.hpp:20
armnn::power::first_argument_type
T first_argument_type
Definition: Power.hpp:17
armnn
Copyright (c) 2021 ARM Limited and Contributors.
Definition: 01_00_quick_start.dox:6
armnn::power::result_type
T result_type
Definition: Power.hpp:16