rawalkhirodkar's picture
Add initial commit
28c256d
raw
history blame
539 Bytes
# 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'
]