A tensor defined by a TensorInfo (shape and data type) and a mutable backing store.
| 319 | |
| 320 | /// A tensor defined by a TensorInfo (shape and data type) and a mutable backing store. |
| 321 | class Tensor : public BaseTensor<void*> |
| 322 | { |
| 323 | public: |
| 324 | /// Brings in the constructors and assignment operator. |
| 325 | using BaseTensor<void*>::BaseTensor; |
| 326 | }; |
| 327 | |
| 328 | /// A tensor defined by a TensorInfo (shape and data type) and an immutable backing store. |
| 329 | class ConstTensor : public BaseTensor<const void*> |
no outgoing calls