GetTilingCond

Function Usage

Obtains the tiling condition specified in GetTilingCond.

Prototype

int32_t GetTilingCond() const

Parameters

None

Returns

If the return value is greater than or equal to 0, the tiling cond is valid.

If the return value is -1, the tiling cond is invalid.

Constraints

None

Examples

ge::graphStatus Tiling4XXX(TilingContext* context) {
  auto tiling_cond = context->GetTilingCond();
  // ...
}