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

Function cos

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

Cosine function. \param arg function argument \return cosine value of \a arg template typename enable ::type cos(T arg) { return functions::cos(arg); }

Source from the content-addressed store, hash-verified

2413 /// \return cosine value of \a arg
2414// template<typename T> typename enable<expr,T>::type cos(T arg) { return functions::cos(arg); }
2415 inline expr cos(half arg) { return functions::cos(arg); }
2416 inline expr cos(expr arg) { return functions::cos(arg); }
2417
2418 /// Tangent function.

Callers 5

rdft_1d_stepFunction · 0.85
dft_1d_stepFunction · 0.85
irdft_1d_stepFunction · 0.85
idft_1d_stepFunction · 0.85
cosMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected