__init__.py 525 Bytes
Newer Older
1
2
3
4
# Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# See LICENSE for license information.
"""Transformer Engine bindings for JAX"""
5
6

from . import flax
Ming-Xu Huang's avatar
Ming-Xu Huang committed
7
from .fp8 import fp8_autocast, update_collections, update_fp8_metas, get_delayed_scaling
8
from .sharding import MajorShardingType, ShardingResource, ShardingType
9
10
11
12


__all__ = [
    'fp8_autocast', 'update_collections', 'update_fp8_metas', 'get_delayed_scaling',
13
    'MajorShardingType', 'ShardingResource', 'ShardingType', 'flax', 'praxis',
14
]