MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / fdim

Function fdim

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

Positive difference. \param x first operand \param y second operand \return \a x - \a y or 0 if difference negative template typename enable ::type fdim(T x, U y) { return functions::fdim(x, y); }

Source from the content-addressed store, hash-verified

2311 /// \return \a x - \a y or 0 if difference negative
2312// template<typename T,typename U> typename enable<expr,T,U>::type fdim(T x, U y) { return functions::fdim(x, y); }
2313 inline expr fdim(half x, half y) { return functions::fdim(x, y); }
2314 inline expr fdim(half x, expr y) { return functions::fdim(x, y); }
2315 inline expr fdim(expr x, half y) { return functions::fdim(x, y); }
2316 inline expr fdim(expr x, expr y) { return functions::fdim(x, y); }

Callers 1

fdimMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected