| 258 | /// Returns a TensorRef offset by a given amount |
| 259 | CUTLASS_HOST_DEVICE |
| 260 | TensorView operator-( |
| 261 | TensorCoord const& b ///< offset in the logical coordinate space of the tensor |
| 262 | ) const { |
| 263 | |
| 264 | TensorRef result(*this); |
| 265 | result.add_pointer_offset(-this->offset(b)); |
| 266 | return result; |
| 267 | } |
| 268 | |
| 269 | /// Returns a TensorRef offset by a given amount |
| 270 | CUTLASS_HOST_DEVICE |
nothing calls this directly
no test coverage detected