Constructor * * @note Tensor memory is allocated * * @param[in] ctx Context from where the tensor will be created from * @param[in] desc Tensor descriptor to be used * @param[out] status Status information if requested */
| 593 | * @param[out] status Status information if requested |
| 594 | */ |
| 595 | Tensor(Context &ctx, const TensorDescriptor &desc, StatusCode *status = nullptr) : Tensor(ctx, desc, true, status) |
| 596 | { |
| 597 | } |
| 598 | /** Constructor |
| 599 | * |
| 600 | * @param[in] ctx Context from where the tensor will be created from |
nothing calls this directly
no test coverage detected