__init__.py 2.5 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 26
from ..fluid.param_attr import ParamAttr  # noqa: F401
from ..fluid.layers.tensor import create_parameter  # noqa: F401
from ..fluid.core import CPUPlace  # noqa: F401
J
jianghaicheng 已提交
27
from ..fluid.core import IPUPlace  # noqa: F401
28 29 30
from ..fluid.core import CUDAPlace  # noqa: F401
from ..fluid.core import CUDAPinnedPlace  # noqa: F401
from ..fluid.core import NPUPlace  # noqa: F401
31
from ..fluid.core import MLUPlace  # noqa: F401
32
from ..fluid.core import CustomPlace  # noqa: F401
33
from ..fluid.core import VarBase  # noqa: F401
34

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

Z
zhiboniu 已提交
42 43 44 45 46 47 48
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 已提交
49
from ..fluid.framework import _non_static_mode as in_dynamic_mode  # noqa: F401
Z
zhiboniu 已提交
50 51 52 53
from ..fluid.framework import _current_expected_place, _get_paddle_place  # noqa: F401
from ..fluid.framework import dygraph_only  # noqa: F401
from ..fluid.framework import convert_np_dtype_to_dtype_, _varbase_creator, OpProtoHolder  # noqa: F401
from ..fluid.framework import _dygraph_tracer  # noqa: F401
Z
zhiboniu 已提交
54

55
__all__ = []