SetTilingCond
Description
Sets the tiling cond.
Prototype
ge::graphStatus SetTilingCond(int32_t tiling_cond)
Parameters
Parameter |
Input/Output |
Description |
|---|---|---|
tiling_cond |
Input |
Tiling cond to be set. |
Returns
ge::GRAPH_SUCCESS on success.
For details about the definition of graphStatus, see ge::graphStatus.
Restrictions
None
Example
ge::graphStatus Tiling4XXX(TilingContext* context) {
auto ret = context->SetTilingCond(10);
// ...
}
Parent topic: TilingContext