GetRequiredInputShape

Description

Obtains the pointer to a required input shape based on the input index in the operator prototype definition.

Prototype

const Shape *GetRequiredInputShape(const size_t ir_index) const

Parameters

Parameter

Input/Output

Description

ir_index

Input

Index of the required input in the operator IR prototype definition, starting from 0.

Returns

Pointer to a specified input shape. If the input ir_index is invalid, a null pointer is returned.

For details about the definition of the shape type, see Shape.

Restrictions

None

Example

ge::graphStatus InferShapeForXXX(InferShapeContext *context) {
  auto in_shape = context->GetRequiredInputShape(2);
  // ...
}