GetDeterministicLevel
Function Usage
Obtains the configuration items of the deterministic computing level.
Prototype
1 | int32_t GetDeterministicLevel() const |
Parameters
None
Returns
0: The deterministic configuration item is disabled.
1: The deterministic configuration item is enabled.
2: The strong consistency configuration item is enabled.
Constraints
None
Examples
1 2 3 4 | ge::graphStatus Tiling4XXX(TilingContext* context) { int32_t ret = context->GetDeterministicLevel(); // ... } |
Parent topic: TilingContext