| 418 | } |
| 419 | |
| 420 | CUTLASS_HOST_DEVICE |
| 421 | reference at(size_type pos) { |
| 422 | return reference(storage + pos / kElementsPerStoredItem, pos % kElementsPerStoredItem); |
| 423 | } |
| 424 | |
| 425 | CUTLASS_HOST_DEVICE |
| 426 | const_reference at(size_type pos) const { |
nothing calls this directly
no test coverage detected