ArmNN
 23.08
log< T > Struct Template Reference

#include <Log.hpp>

Public Types

typedef T result_type
 
typedef T argument_type
 

Public Member Functions

operator() (const T &inputData) const
 

Detailed Description

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

Definition at line 13 of file Log.hpp.

Member Typedef Documentation

◆ argument_type

typedef T argument_type

Definition at line 16 of file Log.hpp.

◆ result_type

typedef T result_type

Definition at line 15 of file Log.hpp.

Member Function Documentation

◆ operator()()

T operator() ( const T &  inputData) const
inline

Definition at line 19 of file Log.hpp.

20  {
21  // computes natural logarithm of inputData
22  return std::log(inputData);
23  }

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