VariantPack

Description

When the ATB operator is executed, VariantPack needs to be constructed to store the input and final output.

Definition

1
2
3
4
struct VariantPack {
    SVector<Tensor> inTensors;
    SVector<Tensor> outTensors;
};

Parameters

Member

Data Type

Default Value

Description

inTensors

SVector<Tensor>

-

Stores the SVectors of all input tensors.

outTensors

SVector<Tensor>

-

Stores the SVectors of all output tensors.