max_val() Returns max of x and y
| 61 | // max_val() |
| 62 | // Returns max of x and y |
| 63 | inline __device__ int max_val(const int x, const int y) { return max(x, y); } |
| 64 | inline __device__ unsigned max_val(const unsigned x, const unsigned y) { |
| 65 | return max(x, y); |
| 66 | } |
no test coverage detected