| 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); |
no outgoing calls