14 lines
289 B
Python
14 lines
289 B
Python
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# DeepSpeed Team
|
|
|
|
# Imports for registering ops
|
|
from .attention import *
|
|
from .linear import *
|
|
from .post_norm import *
|
|
from .pre_norm import *
|
|
from .embedding import *
|
|
from .unembed import *
|
|
from .moe import *
|