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

Function impl_sqrt

tensorflow/core/kernels/training_ops_gpu.cu.cc:44–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

42// We have no choice but to implement sqrt and rsqrt by hand
43template <typename T>
44__device__ T impl_sqrt(T x) {
45 return sqrt(x);
46}
47template <typename T>
48__device__ T impl_rsqrt(T x) {
49 return rsqrt(x);

Callers

nothing calls this directly

Calls 1

sqrtClass · 0.70

Tested by

no test coverage detected