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

14
from .amp_optimizer import AMPOptimizer
15
from .recompute_optimizer import RecomputeOptimizer
16
from .gradient_merge_optimizer import GradientMergeOptimizer
17
from .graph_execution_optimizer import GraphExecutionOptimizer
18
from .pipeline_optimizer import PipelineOptimizer
Y
Yi Liu 已提交
19
from .localsgd_optimizer import LocalSGDOptimizer
20
from .lars_optimizer import LarsOptimizer
21

22
__all__ = [
23
    'AMPOptimizer',
24 25
    'RecomputeOptimizer',
    'GradientMergeOptimizer',
26
    'PipelineOptimizer',
Y
Yi Liu 已提交
27
    'LocalSGDOptimizer',
28
    'LarsOptimizer',
29
]