| 130 | } |
| 131 | |
| 132 | __host__ __device__ inline tensorflow::bfloat16 GpuLdg( |
| 133 | const tensorflow::bfloat16* address) { |
| 134 | tensorflow::bfloat16 return_value; |
| 135 | return_value.value = GpuLdg(reinterpret_cast<const uint16_t*>(address)); |
| 136 | return return_value; |
| 137 | } |
| 138 | // Already aliased in gpu_device_functions.h |
| 139 | |
| 140 | template <typename T> |