SetTilingCond
Function Usage
Sets the tiling cond. Sets tiling cond, which is an integer used to select the tiling implementation for an operator.
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.
Constraints
None
Examples
ge::graphStatus Tiling4XXX(TilingContext* context) {
auto ret = context->SetTilingCond(10);
// ...
}
Parent topic: TilingContext