| 125 | // builds |
| 126 | template <typename... Args> |
| 127 | auto CudaLaunchKernel(Args&&... args) |
| 128 | -> decltype(GpuLaunchKernel(std::forward<Args>(args)...)) { |
| 129 | return GpuLaunchKernel(std::forward<Args>(args)...); |
| 130 | } |
| 131 | |
| 132 | __host__ __device__ inline tensorflow::bfloat16 GpuLdg( |
| 133 | const tensorflow::bfloat16* address) { |
nothing calls this directly
no test coverage detected