MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / operator*

Function operator*

tensorflow/core/kernels/determinant_op_gpu.cu.cc:58–60  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56 a_real * b_imag + a_imag * b_real);
57}
58__device__ inline complex64 operator*(const complex64& a, const complex64& b) {
59 return complex_multiply<float>(a, b);
60}
61__device__ inline complex64 operator*(const complex64& a, const float& b) {
62 return complex64(Eigen::numext::real(a) * b, Eigen::numext::imag(a) * b);
63}

Callers

nothing calls this directly

Calls 2

realFunction · 0.85
imagFunction · 0.85

Tested by

no test coverage detected