File size: 539 Bytes
28c256d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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'
]