Spaces:
Running
on
Zero
Running
on
Zero
# Copyright (c) Meta Platforms, Inc. and affiliates. | |
# All rights reserved. | |
# | |
# This source code is licensed under the license found in the | |
# LICENSE file in the root directory of this source tree. | |
from .device_type import (IS_CUDA_AVAILABLE, IS_MLU_AVAILABLE, | |
IS_MPS_AVAILABLE, IS_NPU_AVAILABLE) | |
from .env import collect_env | |
from .parrots_jit import jit, skip_no_elena | |
__all__ = [ | |
'IS_MLU_AVAILABLE', 'IS_MPS_AVAILABLE', 'IS_CUDA_AVAILABLE', | |
'IS_NPU_AVAILABLE', 'collect_env', 'jit', 'skip_no_elena' | |
] | |