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

Function copysign

support/ToolchainSupport.h:116–119  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

114 */
115template <typename T, typename = typename std::enable_if<std::is_floating_point<T>::value>::type>
116inline T copysign(T x, T y)
117{
118 return ::copysign(x, y);
119}
120
121/** Computes (x*y) + z as if to infinite precision and rounded only once to fit the result type.
122 *

Callers 1

round_half_evenFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected