__init__.py 2.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# Copyright (c) 2022 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

from .base_cost import Cost
16
from .base_cost import CommContext
C
caozhou 已提交
17
from .base_cost import _g_op_cost_factory
18
from .base_cost import build_comm_desc
19
from .base_cost import build_dp_costs
C
caozhou 已提交
20 21 22 23
from .base_cost import build_comp_desc_str_for_predict
from .base_cost import build_comp_desc_from_dist_op
from .base_cost import build_comm_desc_from_dist_op
from .base_cost import build_comm_costs_from_descs
24
from .base_cost import build_comp_costs_from_descs
25

C
caozhou 已提交
26 27 28 29 30
from .comp_op_cost import EmbeddingOpCost
from .comp_op_cost import EmbeddingGradOpCost
from .comp_op_cost import ConcatOpCost
from .comp_op_cost import MatmulOpCost
from .comp_op_cost import MatmulGradOpCost
31
from .comp_op_cost import MatmulV2OpCost
C
caozhou 已提交
32 33 34 35 36 37 38 39 40 41 42
from .comp_op_cost import MatmulV2GradOpCost
from .comp_op_cost import MulOpCost
from .comp_op_cost import MulGradOpCost
from .comp_op_cost import Reshape2OpCost
from .comp_op_cost import Reshape2GradOpCost
from .comp_op_cost import SliceOpCost
from .comp_op_cost import SplitOpCost
from .comp_op_cost import SoftmaxOpCost
from .comp_op_cost import SoftmaxGradOpCost
from .comp_op_cost import Transpose2OpCost
from .comp_op_cost import Transpose2GradOpCost
43
from .comp_op_cost import FillConstantBatchSizeLikeOpCost
44

C
caozhou 已提交
45 46 47 48
from .tensor_cost import TensorCost

from .estimate_cost import CostEstimator

49 50 51 52 53 54
from .comm_op_cost import SendOpCost
from .comm_op_cost import RecvOpCost
from .comm_op_cost import IdentityOpCost
from .comm_op_cost import BroadcastOpCost
from .comm_op_cost import AllgatherOpCost
from .comm_op_cost import AllreduceSumOpCost