ArmNN
 26.01
Loading...
Searching...
No Matches
maximum< T > Struct Template Reference

#include <Maximum.hpp>

Public Types

typedef T result_type
 
typedef T first_argument_type
 

Public Member Functions

operator() (const T &inputData0, const T &inputData1) const
 

Detailed Description

template<typename T>
struct armnn::maximum< T >

Definition at line 13 of file Maximum.hpp.

Member Typedef Documentation

◆ first_argument_type

template<typename T >
typedef T first_argument_type

Definition at line 16 of file Maximum.hpp.

◆ result_type

template<typename T >
typedef T result_type

Definition at line 15 of file Maximum.hpp.

Member Function Documentation

◆ operator()()

template<typename T >
T operator() ( const T & inputData0,
const T & inputData1 ) const
inline

Definition at line 18 of file Maximum.hpp.

19 {
20 return std::max(inputData0, inputData1);
21 }

The documentation for this struct was generated from the following file: