MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / isinf

Function isinf

include/half/half.hpp:2727–2727  ·  view source on GitHub ↗

Check for infinity. \param arg number to check \retval true for positive or negative infinity \retval false else template typename enable ::type isinf(T arg) { return functions::isinf(arg); }

Source from the content-addressed store, hash-verified

2725 /// \retval false else
2726// template<typename T> typename enable<bool,T>::type isinf(T arg) { return functions::isinf(arg); }
2727 inline bool isinf(half arg) { return functions::isinf(arg); }
2728 inline bool isinf(expr arg) { return functions::isinf(arg); }
2729
2730 /// Check for NaN.

Callers 1

builtin_isinfFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected