__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
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
21

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

Z
zhiboniu 已提交
32
from ..fluid import core  # noqa: F401
33 34 35 36 37
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
38

Z
zhiboniu 已提交
39 40 41 42 43 44 45
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 已提交
46
from ..fluid.framework import _non_static_mode as in_dynamic_mode  # noqa: F401
47 48 49
from ..fluid.framework import (  # noqa: F401
    _non_static_mode,  # temporary used for hackson
)
50 51 52 53
from ..fluid.framework import (
    _current_expected_place,
    _get_paddle_place,
)  # noqa: F401
Z
zhiboniu 已提交
54
from ..fluid.framework import dygraph_only  # noqa: F401
55
from ..fluid.framework import dygraph_not_support  # noqa: F401
56 57 58 59 60
from ..fluid.framework import (
    convert_np_dtype_to_dtype_,
    _varbase_creator,
    OpProtoHolder,
)  # noqa: F401
Z
zhiboniu 已提交
61
from ..fluid.framework import _dygraph_tracer  # noqa: F401
62
from ..fluid.framework import generate_control_dev_var_name  # noqa: F401
Z
zhiboniu 已提交
63

64 65
from ..fluid.layer_helper import LayerHelper  # noqa: F401
from ..fluid.framework import in_dygraph_mode  # noqa: F401
66 67 68
from ..fluid.framework import _global_flags  # noqa: F401
from ..fluid.framework import _apply_pass  # noqa: F401
from ..fluid.framework import switch_main_program
69
from ..fluid.framework import switch_startup_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__ = []