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

Function sqrt

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

Square root. \param arg function argument \return square root of \a arg template typename enable ::type sqrt(T arg) { return functions::sqrt(arg); }

Source from the content-addressed store, hash-verified

2368 /// \return square root of \a arg
2369// template<typename T> typename enable<expr,T>::type sqrt(T arg) { return functions::sqrt(arg); }
2370 inline expr sqrt(half arg) { return functions::sqrt(arg); }
2371 inline expr sqrt(expr arg) { return functions::sqrt(arg); }
2372
2373 /// Cubic root.

Callers 15

find_lhs_rhs_infoFunction · 0.85
calculate_prior_boxesMethod · 0.85
batch_normalizationFunction · 0.85
batch_normalizationFunction · 0.85
q8_prepare_lutFunction · 0.85
init_lutFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected