| 313 | } |
| 314 | |
| 315 | DEVICE_FUNCTION void readFromSmem(float (&x)[2], float const* smem, int32_t idx) |
| 316 | { |
| 317 | float2 tmp = *(float2 const*) &smem[2 * idx]; |
| 318 | x[0] = tmp.x; |
| 319 | x[1] = tmp.y; |
| 320 | } |
| 321 | |
| 322 | DEVICE_FUNCTION void readFromSmem(float (&x)[4], float const* smem, int32_t idx) |
| 323 | { |
no outgoing calls
no test coverage detected