ONE - On-device Neural Engine
Loading...
Searching...
No Matches
onert_micro::execute::pal::FloorDivFn< T, > Struct Template Reference

#include <PALBinaryOpCommon.h>

Public Member Functions

operator() (T lhs, T rhs)
 

Detailed Description

template<typename T, std::enable_if_t< std::is_floating_point< T >::value, bool > = true>
struct onert_micro::execute::pal::FloorDivFn< T, >

Definition at line 35 of file PALBinaryOpCommon.h.

Member Function Documentation

◆ operator()()

template<typename T , std::enable_if_t< std::is_floating_point< T >::value, bool > = true>
T onert_micro::execute::pal::FloorDivFn< T, >::operator() ( lhs,
rhs 
)
inline

Definition at line 37 of file PALBinaryOpCommon.h.

38 {
39 return std::floor(static_cast<double>(lhs) / static_cast<double>(rhs));
40 }

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