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

Function mul

src/backend/oneapi/kernel/resize.hpp:29–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27
28template<typename AT, typename BT>
29BT mul(AT a, BT b) {
30 return a * b;
31}
32template<typename AT>
33std::complex<double> mul(AT a, std::complex<double> b) {
34 return std::complex<double>(a * b.real(), a * b.imag());

Callers 1

resize_b_Function · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected