MutableOutputInstanceInfo
Description
Obtains the corresponding instantiated object based on the output index in the operator IR prototype.
Prototype
AnchorInstanceInfo *MutableOutputInstanceInfo(const size_t ir_index) const
Parameters
Parameter |
Input/Output |
Description |
|---|---|---|
ir_index |
Output |
Output index in the operator IR prototype definition, starting from 0. |
Returns
Address of the instantiated object. The returned object is not const.
Restrictions
None
Example
for (size_t i = 0; i < ir_outputs.size(); ++i) {
auto ins_info = compute_node_info.MutableOutputInstanceInfo(i);
...
}
Parent topic: ComputeNodeInfo