mirror of https://github.com/alibaba/EasyCV.git
7 lines
142 B
Python
7 lines
142 B
Python
|
# Copyright (c) Alibaba, Inc. and its affiliates.
|
||
|
import os
|
||
|
|
||
|
|
||
|
def is_torchacc_enabled():
|
||
|
return bool(int(os.getenv('USE_TORCHACC', '0')))
|