Explict Operator Constructor * * @param[in] ctx Context to be used by the operator */
| 50 | * @param[in] ctx Context to be used by the operator |
| 51 | */ |
| 52 | explicit ITensorV2(IContext *ctx) : AclTensor_() |
| 53 | { |
| 54 | ARM_COMPUTE_ASSERT_NOT_NULLPTR(ctx); |
| 55 | this->header.ctx = ctx; |
| 56 | this->header.ctx->inc_ref(); |
| 57 | } |
| 58 | /** Destructor */ |
| 59 | virtual ~ITensorV2() |
| 60 | { |