Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
43
template <typename T>
44
__device__ T impl_sqrt(T x) {
45
return sqrt(x);
46
}
47
template <typename T>
48
__device__ T impl_rsqrt(T x) {
49
return rsqrt(x);
Callers
nothing calls this directly
Calls
1
sqrt
Class · 0.70
Tested by
no test coverage detected