Computes the offset of an index from the origin of the tensor
| 313 | |
| 314 | /// Computes the offset of an index from the origin of the tensor |
| 315 | CUTLASS_HOST_DEVICE |
| 316 | LongIndex offset(TensorCoord const& coord) const { |
| 317 | return layout_(coord); |
| 318 | } |
| 319 | |
| 320 | /// Returns a reference to the element at a given Coord |
| 321 | CUTLASS_HOST_DEVICE |
no outgoing calls
no test coverage detected