__init__.py 3.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#   Copyright (c) 2020 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
# TODO: import framework api under this directory
16

17 18 19 20 21
from . import random  # noqa: F401
from .random import seed  # noqa: F401
from .framework import get_default_dtype  # noqa: F401
from .framework import set_default_dtype  # noqa: F401
from .framework import set_grad_enabled  # noqa: F401
W
wuhuanzhou 已提交
22
from .framework import is_grad_enabled  # noqa: F401
23

24 25
from ..fluid.param_attr import ParamAttr  # noqa: F401
from ..fluid.core import CPUPlace  # noqa: F401
J
jianghaicheng 已提交
26
from ..fluid.core import IPUPlace  # noqa: F401
27 28 29
from ..fluid.core import CUDAPlace  # noqa: F401
from ..fluid.core import CUDAPinnedPlace  # noqa: F401
from ..fluid.core import NPUPlace  # noqa: F401
30
from ..fluid.core import MLUPlace  # noqa: F401
31
from ..fluid.core import CustomPlace  # noqa: F401
32
from ..fluid.core import VarBase  # noqa: F401
33

Z
zhiboniu 已提交
34
from ..fluid import core  # noqa: F401
35 36 37 38 39
from ..fluid.dygraph.base import no_grad_ as no_grad  # noqa: F401
from ..fluid.dygraph.base import grad  # noqa: F401
from .io import save  # noqa: F401
from .io import load  # noqa: F401
from ..fluid.dygraph.parallel import DataParallel  # noqa: F401
40

Z
zhiboniu 已提交
41 42 43 44 45 46 47
from ..fluid import monkey_patch_variable
from ..fluid.dygraph import monkey_patch_math_varbase
from ..fluid.framework import disable_signal_handler  # noqa: F401
from ..fluid.framework import get_flags  # noqa: F401
from ..fluid.framework import set_flags  # noqa: F401
from ..fluid.dygraph.base import enable_dygraph as disable_static  # noqa: F401
from ..fluid.dygraph.base import disable_dygraph as enable_static  # noqa: F401
J
Jiabin Yang 已提交
48
from ..fluid.framework import _non_static_mode as in_dynamic_mode  # noqa: F401
49 50 51
from ..fluid.framework import (  # noqa: F401
    _non_static_mode,  # temporary used for hackson
)
52 53 54 55
from ..fluid.framework import (
    _current_expected_place,
    _get_paddle_place,
)  # noqa: F401
Z
zhiboniu 已提交
56
from ..fluid.framework import dygraph_only  # noqa: F401
57
from ..fluid.framework import dygraph_not_support  # noqa: F401
58 59 60 61 62
from ..fluid.framework import (
    convert_np_dtype_to_dtype_,
    _varbase_creator,
    OpProtoHolder,
)  # noqa: F401
Z
zhiboniu 已提交
63
from ..fluid.framework import _dygraph_tracer  # noqa: F401
Z
zhiboniu 已提交
64

65 66
from ..fluid.layer_helper import LayerHelper  # noqa: F401
from ..fluid.framework import in_dygraph_mode  # noqa: F401
67 68 69
from ..fluid.framework import _global_flags  # noqa: F401
from ..fluid.framework import _apply_pass  # noqa: F401
from ..fluid.framework import switch_main_program
70 71
from ..fluid.framework import _set_expected_place  # noqa: F401
from ..fluid.framework import Block, Program  # noqa: F401
72
from ..fluid.framework import IrGraph  # noqa: F401
73 74 75 76 77 78
from ..fluid.dygraph import parallel_helper  # noqa: F401
from ..fluid.dygraph.parallel import (
    _split_tensors,
    build_groups,
    sync_params_buffers,
)
79

80
__all__ = []