__init__.py 1.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License

15
from .common import DistributedOperatorImplContainer
16
from .common import DistributedOperatorImpl
17
from .common import register_distributed_operator_impl_container
18
from .common import register_distributed_operator_impl
19
from .common import find_compatible_distributed_operator_impls
20 21 22 23 24
from . import dist_embedding
from . import dist_matmul
from . import dist_reshape
from . import dist_softmax
from . import dist_transpose
25
from . import dist_default
26
from . import dist_eltwise
J
JZ-LIANG 已提交
27
from . import dist_check_finite_and_unscale
28
from . import dist_update_loss_scaling
J
JZ-LIANG 已提交
29
from . import dist_split
30
from . import dist_fill_constant_batch_size_like
31
from . import dist_pnorm
32
from . import dist_slice
33 34
from . import dist_fused_feedforward
from . import dist_fused_attention
35
from . import dist_reduce_sum_p
36 37
from . import dist_shape
from . import dist_assign