MCPcopy Create free account
hub / github.com/LBANN/lbann / mod

Function mod

include/lbann/utils/impl/gpu_lib.hpp:146–149  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

144 return ::fmax(x, y);
145}
146__device__ __forceinline__ float mod(const float& x, const float& y)
147{
148 return ::fmodf(x, y);
149}
150__device__ __forceinline__ double mod(const double& x, const double& y)
151{
152 return ::fmod(x, y);

Callers 6

test_cosmoflowFunction · 0.85
test_swishFunction · 0.85
test_lenet_evalFunction · 0.85
test_batchnormFunction · 0.85
test_resnet_34Function · 0.85

Calls

no outgoing calls

Tested by 6

test_cosmoflowFunction · 0.68
test_swishFunction · 0.68
test_lenet_evalFunction · 0.68
test_batchnormFunction · 0.68
test_resnet_34Function · 0.68