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

Function hypot

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

Hypotenuse function. \param x first argument \param y second argument \return square root of sum of squares without internal over- or underflows template typename enable ::type hypot(T x, U y) { return functions::hypot(x, y); }

Source from the content-addressed store, hash-verified

2383 /// \return square root of sum of squares without internal over- or underflows
2384// template<typename T,typename U> typename enable<expr,T,U>::type hypot(T x, U y) { return functions::hypot(x, y); }
2385 inline expr hypot(half x, half y) { return functions::hypot(x, y); }
2386 inline expr hypot(half x, expr y) { return functions::hypot(x, y); }
2387 inline expr hypot(expr x, half y) { return functions::hypot(x, y); }
2388 inline expr hypot(expr x, expr y) { return functions::hypot(x, y); }

Callers 1

hypotMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected