Returns a TensorRef pointing to the first element of the tensor.
| 192 | |
| 193 | /// Returns a TensorRef pointing to the first element of the tensor. |
| 194 | CUTLASS_HOST_DEVICE |
| 195 | Base ref() const { |
| 196 | return Base(this->data(), this->layout(), this->imaginary_stride()); |
| 197 | } |
| 198 | |
| 199 | /// Returns a TensorRef pointing to the first element of the tensor. |
| 200 | CUTLASS_HOST_DEVICE |
no test coverage detected