Returns a TensorRef pointing to the first element of the tensor.
| 138 | |
| 139 | /// Returns a TensorRef pointing to the first element of the tensor. |
| 140 | CUTLASS_HOST_DEVICE |
| 141 | TensorRef ref() { |
| 142 | return TensorRef(this->data(), layout()); |
| 143 | } |
| 144 | |
| 145 | /// Returns a TensorRef pointing to the first element of the tensor. |
| 146 | CUTLASS_HOST_DEVICE |
no test coverage detected