LINC-BIT's picture
Upload 1912 files
b84549f verified
raw
history blame contribute delete
376 Bytes
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
_multi_thread = False
_multi_phase = False
def enable_multi_thread():
global _multi_thread
_multi_thread = True
def multi_thread_enabled():
return _multi_thread
def enable_multi_phase():
global _multi_phase
_multi_phase = True
def multi_phase_enabled():
return _multi_phase