42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
|
|
# Copyright (c) 2021 NVIDIA Corporation. 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.
|
|
|
|
from . import marker as marker
|
|
from .api import (
|
|
ignore_module,
|
|
json_to_pdmodel, # noqa: F401
|
|
load,
|
|
save,
|
|
to_static,
|
|
)
|
|
from .dy2static.logging_utils import set_code_level, set_verbosity
|
|
from .dy2static.program_translator import enable_to_static
|
|
from .marker import (
|
|
not_to_static,
|
|
)
|
|
from .translated_layer import TranslatedLayer
|
|
|
|
__all__ = [
|
|
'save',
|
|
'load',
|
|
'to_static',
|
|
'ignore_module',
|
|
'TranslatedLayer',
|
|
'set_code_level',
|
|
'set_verbosity',
|
|
'not_to_static',
|
|
'enable_to_static',
|
|
]
|