__init__.py 1.2 KB
Newer Older
M
Ming-Xu Huang 已提交
1 2
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
# Copyright (c) 2021 NVIDIA Corporation. All rights reserved.
3 4 5 6 7 8 9 10 11 12 13 14 15
#
# 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.

16 17
from .api import save
from .api import load
H
hjyp 已提交
18
from .api import to_static
19
from .api import not_to_static
H
hjyp 已提交
20
from .api import ignore_module
21
from .dy2static.logging_utils import set_code_level, set_verbosity
22

23 24
from . import dy2static
from .dy2static.program_translator import ProgramTranslator
25
from .translated_layer import TranslatedLayer
26

27
__all__ = [  # noqa
28 29 30
    'save',
    'load',
    'to_static',
H
hjyp 已提交
31
    'ignore_module',
32 33 34 35 36
    'ProgramTranslator',
    'TranslatedLayer',
    'set_code_level',
    'set_verbosity',
    'not_to_static',
37
]