Returns a TensorRef pointing to the first element of the tensor.
| 200 | |
| 201 | /// Returns a TensorRef pointing to the first element of the tensor. |
| 202 | CUTLASS_HOST_DEVICE |
| 203 | TensorRef ref() const { |
| 204 | return TensorRef(this->data(), this->layout()); |
| 205 | } |
| 206 | |
| 207 | /// Returns a TensorRef pointing to the first element of the tensor. |
| 208 | CUTLASS_HOST_DEVICE |