45 lines
1.4 KiB
Python
45 lines
1.4 KiB
Python
# Copyright (c) 2025 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.
|
|
|
|
import __builtin__
|
|
|
|
DataType = __builtin__.DataType
|
|
DataValue = __builtin__.DataValue
|
|
PointerType = __builtin__.PointerType
|
|
PointerValue = __builtin__.PointerValue
|
|
MutableList = __builtin__.MutableList
|
|
OrderedDict = __builtin__.OrderedDict
|
|
MutableOrderedDict = __builtin__.MutableOrderedDict
|
|
AttrMap = __builtin__.AttrMap
|
|
SerializableAttrMap = __builtin__.SerializableAttrMap
|
|
|
|
_raise = __builtin__._raise
|
|
|
|
foreach = __builtin__.foreach
|
|
range = __builtin__.range
|
|
map = __builtin__.map
|
|
reduce = __builtin__.reduce
|
|
filter = __builtin__.filter
|
|
zip = __builtin__.zip
|
|
flat_map = __builtin__.flat_map
|
|
apply = __builtin__.apply
|
|
replace_or_trim_left_comma = __builtin__.replace_or_trim_left_comma
|
|
|
|
registry = __builtin__registry # noqa: F821
|
|
|
|
sorted = __builtin__.sorted
|
|
|
|
dirname = __builtin__.dirname
|
|
basename = __builtin__.basename
|