| 25 | (defined(__ANDROID__) && !defined(__NDK_MAJOR__)) || defined(ARDUINO) |
| 26 | template <class T> |
| 27 | inline float TfLiteRound(const float x) { |
| 28 | return ::round(x); |
| 29 | } |
| 30 | inline double TfLiteRound(const double x) { return ::round(x); } |
| 31 | #else |
| 32 | template <class T> |