ArmNN
 22.05
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

Definition at line 16 of file Maximum.hpp.

◆ result_type

typedef T result_type

Definition at line 15 of file Maximum.hpp.

Member Function Documentation

◆ operator()()

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

Definition at line 19 of file Maximum.hpp.

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

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