Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
c39d1cff
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2298
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
c39d1cff
编写于
11月 28, 2022
作者:
N
Nyakku Shigure
提交者:
GitHub
11月 28, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[CodeStyle][isort] introduce isort (part5) (#48404)
上级
bb1fffd6
变更
15
隐藏空白更改
内联
并排
Showing
15 changed file
with
190 addition
and
171 deletion
+190
-171
python/paddle/common_ops_import.py
python/paddle/common_ops_import.py
+21
-20
python/paddle/tensor/array.py
python/paddle/tensor/array.py
+2
-3
python/paddle/tensor/attribute.py
python/paddle/tensor/attribute.py
+7
-10
python/paddle/tensor/creation.py
python/paddle/tensor/creation.py
+23
-16
python/paddle/tensor/einsum.py
python/paddle/tensor/einsum.py
+11
-10
python/paddle/tensor/layer_function_generator.py
python/paddle/tensor/layer_function_generator.py
+7
-6
python/paddle/tensor/linalg.py
python/paddle/tensor/linalg.py
+12
-12
python/paddle/tensor/logic.py
python/paddle/tensor/logic.py
+8
-9
python/paddle/tensor/manipulation.py
python/paddle/tensor/manipulation.py
+23
-19
python/paddle/tensor/math.py
python/paddle/tensor/math.py
+31
-35
python/paddle/tensor/ops.py
python/paddle/tensor/ops.py
+6
-6
python/paddle/tensor/random.py
python/paddle/tensor/random.py
+16
-12
python/paddle/tensor/search.py
python/paddle/tensor/search.py
+14
-6
python/paddle/tensor/stat.py
python/paddle/tensor/stat.py
+6
-6
python/paddle/tensor/to_string.py
python/paddle/tensor/to_string.py
+3
-1
未找到文件。
python/paddle/common_ops_import.py
浏览文件 @
c39d1cff
...
...
@@ -11,31 +11,32 @@
# 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
paddle.fluid.layer_helper
import
LayerHelper
# noqa: F401
from
paddle.fluid.param_attr
import
ParamAttr
# noqa: F401
import
paddle.fluid
as
fluid
# noqa: F401
from
paddle.fluid
import
core
,
dygraph_utils
# noqa: F401
from
paddle.fluid.core
import
VarDesc
# noqa: F401
from
paddle.fluid.data_feeder
import
(
# noqa: F401
check_dtype
,
check_type
,
check_variable_and_dtype
,
convert_dtype
,
)
from
paddle.fluid.framework
import
(
# noqa: F401
convert_np_dtype_to_dtype_
,
OpProtoHolder
,
Variable
,
_dygraph_tracer
,
_in_legacy_dygraph
,
_non_static_mode
,
_varbase_creator
,
in_dygraph_mode
,
_in_legacy_dygraph
,
)
from
paddle.fluid.framework
import
(
# noqa: F401
device_guard
,
convert_np_dtype_to_dtype_
,
default_main_program
,
device_guard
,
dygraph_only
,
_dygraph_tracer
,
in_dygraph_mode
,
)
from
paddle.fluid.framework
import
OpProtoHolder
,
Variable
# noqa: F401
from
paddle.fluid.initializer
import
Constant
# noqa: F401
from
paddle.fluid.core
import
VarDesc
# noqa: F401
from
paddle.fluid
import
core
,
dygraph_utils
# noqa: F401
from
paddle.fluid.data_feeder
import
(
# noqa: F401
check_type
,
check_dtype
,
check_variable_and_dtype
,
convert_dtype
,
)
from
paddle.fluid.layer_helper
import
LayerHelper
# noqa: F401
from
paddle.fluid.layers
import
fill_constant
,
utils
# noqa: F401
from
paddle.tensor.layer_function_generator
import
templatedoc
# noqa: F401
import
paddle.fluid
as
fluid
# noqa: F401
from
paddle.fluid.layers.layer_function_generator
import
(
# noqa: F401
templatedoc
,
)
from
paddle.fluid.param_attr
import
ParamAttr
# noqa: F401
python/paddle/tensor/array.py
浏览文件 @
c39d1cff
...
...
@@ -14,10 +14,9 @@
# Define functions about array.
from
..fluid.data_feeder
import
check_type
,
check_variable_and_dtype
from
..framework
import
LayerHelper
,
_non_static_mode
,
core
from
..static
import
Variable
from
..framework
import
LayerHelper
,
core
,
_non_static_mode
from
..fluid.data_feeder
import
check_type
from
..fluid.data_feeder
import
check_variable_and_dtype
__all__
=
[]
...
...
python/paddle/tensor/attribute.py
浏览文件 @
c39d1cff
...
...
@@ -12,21 +12,18 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from
..framework
import
core
from
..framework
import
LayerHelper
from
..fluid.data_feeder
import
check_variable_and_dtype
from
..fluid.data_feeder
import
check_type
# TODO: define functions to get tensor attributes
from
.creation
import
assign
from
.creation
import
_complex_to_real_dtype
import
numpy
as
np
# TODO: define functions to get tensor attributes
import
paddle
from
paddle
import
_C_ops
,
_legacy_C_ops
from
..static
import
Variable
from
..fluid.framework
import
_in_legacy_dygraph
,
in_dygraph_mode
import
numpy
as
np
from
..fluid.data_feeder
import
check_type
,
check_variable_and_dtype
from
..fluid.framework
import
_in_legacy_dygraph
,
in_dygraph_mode
from
..framework
import
LayerHelper
,
core
from
..static
import
Variable
from
.creation
import
_complex_to_real_dtype
,
assign
__all__
=
[]
...
...
python/paddle/tensor/creation.py
浏览文件 @
c39d1cff
...
...
@@ -12,32 +12,39 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import
numpy
as
np
# TODO: define functions to get create a tensor
import
math
import
re
import
warnings
import
numpy
as
np
import
paddle
from
paddle
import
_C_ops
,
_legacy_C_ops
from
paddle.common_ops_import
import
fill_constant
from
..fluid.layers
import
utils
from
..static
import
Variable
,
device_guard
from
..framework
import
_current_expected_place
,
_get_paddle_place
from
..framework
import
core
from
..framework
import
in_dygraph_mode
,
_non_static_mode
from
..framework
import
LayerHelper
from
..fluid.data_feeder
import
(
check_variable_and_dtype
,
check_type
,
check_dtype
,
check_type
,
check_variable_and_dtype
,
convert_dtype
,
)
from
..framework
import
convert_np_dtype_to_dtype_
# TODO: define functions to get create a tensor
import
paddle
from
paddle
import
_C_ops
,
_legacy_C_ops
from
..fluid.framework
import
(
_in_legacy_dygraph
,
_in_eager_without_dygraph_check
,
_in_legacy_dygraph
,
)
import
warnings
from
..fluid.layers
import
utils
from
..framework
import
(
LayerHelper
,
_current_expected_place
,
_get_paddle_place
,
_non_static_mode
,
convert_np_dtype_to_dtype_
,
core
,
in_dygraph_mode
,
)
from
..static
import
Variable
,
device_guard
__all__
=
[]
...
...
python/paddle/tensor/einsum.py
浏览文件 @
c39d1cff
...
...
@@ -12,22 +12,23 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import
collections
import
itertools
import
numpy
as
np
import
re
import
string
import
numpy
as
np
import
opt_einsum
from
.linalg
import
matmul
,
transpose
from
.manipulation
import
squeeze
,
unsqueeze
,
reshape
from
.math
import
multiply
from
.math
import
sum
as
paddle_sum
from
..fluid.framework
import
_in_legacy_dygraph
from
paddle
import
_C_ops
,
_legacy_C_ops
from
..fluid.data_feeder
import
check_type
,
check_variable_and_dtype
from
..fluid.layer_helper
import
LayerHelper
from
..fluid.framework
import
_in_legacy_dygraph
,
in_dygraph_mode
import
collections
import
string
import
opt_einsum
from
..fluid.layer_helper
import
LayerHelper
from
.linalg
import
matmul
,
transpose
from
.manipulation
import
reshape
,
squeeze
,
unsqueeze
from
.math
import
multiply
from
.math
import
sum
as
paddle_sum
__all__
=
[]
...
...
python/paddle/tensor/layer_function_generator.py
浏览文件 @
c39d1cff
...
...
@@ -13,22 +13,23 @@
# limitations under the License.
import
re
import
warnings
import
string
import
warnings
from
io
import
StringIO
from
..static
import
Variable
from
paddle
import
_C_ops
,
_legacy_C_ops
from
..fluid.data_feeder
import
check_variable_and_dtype
from
..fluid.proto
import
framework_pb2
from
..framework
import
(
LayerHelper
,
OpProtoHolder
,
_non_static_mode
,
convert_np_dtype_to_dtype_
,
core
,
in_dygraph_mode
,
)
from
..framework
import
LayerHelper
from
..fluid.data_feeder
import
check_variable_and_dtype
from
paddle
import
_C_ops
,
_legacy_C_ops
from
..static
import
Variable
__all__
=
[]
...
...
python/paddle/tensor/linalg.py
浏览文件 @
c39d1cff
...
...
@@ -13,23 +13,23 @@
# limitations under the License.
import
numpy
as
np
from
..framework
import
LayerHelper
from
..framework
import
_non_static_mode
,
in_dygraph_mode
import
paddle
from
paddle
import
_C_ops
,
_legacy_C_ops
from
paddle.common_ops_import
import
VarDesc
from
..fluid.data_feeder
import
(
check_variable_and_dtype
,
check_type
,
check_dtype
,
check_type
,
check_variable_and_dtype
,
)
from
..static
import
Variable
from
..fluid.framework
import
_in_legacy_dygraph
from
.manipulation
import
cast
from
.math
import
multiply
,
add
from
.logic
import
logical_not
from
..framework
import
LayerHelper
,
_non_static_mode
,
in_dygraph_mode
from
..static
import
Variable
from
.creation
import
full
import
paddle
from
paddle.common_ops_import
import
VarDesc
from
paddle
import
_C_ops
,
_legacy_C_ops
from
.logic
import
logical_not
from
.manipulation
import
cast
from
.math
import
add
,
multiply
__all__
=
[]
...
...
python/paddle/tensor/logic.py
浏览文件 @
c39d1cff
...
...
@@ -12,27 +12,26 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# TODO: define logic functions of a tensor
import
paddle
from
..fluid.data_feeder
import
check_type
,
check_variable_and_dtype
from
.layer_function_generator
import
templatedoc
from
..static
import
Variable
# TODO: define logic functions of a tensor
from
..fluid.data_feeder
import
check_type
,
check_variable_and_dtype
from
..fluid.framework
import
_in_eager_mode_
from
..static
import
Variable
from
.layer_function_generator
import
templatedoc
if
_in_eager_mode_
:
Tensor
=
paddle
.
fluid
.
framework
.
core
.
eager
.
Tensor
else
:
from
..framework
import
VarBase
as
Tensor
from
..framework
import
in_dygraph_mode
from
..framework
import
LayerHelper
from
..fluid.framework
import
_in_legacy_dygraph
# TODO: define logic functions of a tensor
from
paddle
import
_C_ops
,
_legacy_C_ops
from
paddle.tensor.creation
import
full
from
..fluid.framework
import
_in_legacy_dygraph
from
..framework
import
LayerHelper
,
in_dygraph_mode
__all__
=
[]
...
...
python/paddle/tensor/manipulation.py
浏览文件 @
c39d1cff
...
...
@@ -12,31 +12,35 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# TODO: define functions to manipulate a tensor
import
warnings
from
collections
import
Counter
from
..static
import
Variable
from
..framework
import
core
,
in_dygraph_mode
from
..fluid.framework
import
_in_legacy_dygraph
,
_non_static_mode
from
..framework
import
LayerHelper
from
..framework
import
convert_np_dtype_to_dtype_
,
dygraph_only
from
..fluid.data_feeder
import
(
convert_dtype
,
check_variable_and_dtype
,
check_type
,
check_dtype
,
)
from
..fluid.layers
import
utils
import
numpy
as
np
# TODO: define functions to manipulate a tensor
from
..fluid.dygraph.inplace_utils
import
inplace_apis_in_dygraph_only
import
paddle
from
paddle
import
_C_ops
,
_legacy_C_ops
from
..common_ops_import
import
dygraph_utils
,
fill_constant
,
_varbase_creator
import
warnings
from
.creation
import
zeros
from
.creation
import
_complex_to_real_dtype
from
.creation
import
_real_to_complex_dtype
from
..common_ops_import
import
_varbase_creator
,
dygraph_utils
,
fill_constant
from
..fluid.data_feeder
import
(
check_dtype
,
check_type
,
check_variable_and_dtype
,
convert_dtype
,
)
from
..fluid.dygraph.inplace_utils
import
inplace_apis_in_dygraph_only
from
..fluid.framework
import
_in_legacy_dygraph
,
_non_static_mode
from
..fluid.layers
import
utils
from
..framework
import
(
LayerHelper
,
convert_np_dtype_to_dtype_
,
core
,
dygraph_only
,
in_dygraph_mode
,
)
from
..static
import
Variable
from
.creation
import
_complex_to_real_dtype
,
_real_to_complex_dtype
,
zeros
__all__
=
[]
...
...
python/paddle/tensor/math.py
浏览文件 @
c39d1cff
...
...
@@ -14,47 +14,49 @@
"""
math functions
"""
import
numpy
as
np
from
paddle.common_ops_import
import
VarDesc
from
paddle.common_ops_import
import
dygraph_only
from
paddle.common_ops_import
import
templatedoc
from
paddle.common_ops_import
import
dygraph_utils
# TODO: define math functions
from
.manipulation
import
cast
from
.creation
import
_complex_to_real_dtype
from
.layer_function_generator
import
generate_layer_fn
import
numpy
as
np
import
paddle
from
..static
import
Variable
from
..framework
import
(
core
,
in_dygraph_mode
,
_non_static_mode
,
LayerHelper
,
_in_legacy_dygraph
,
)
from
..fluid.framework
import
_in_legacy_dygraph
from
..framework
import
_varbase_creator
,
convert_np_dtype_to_dtype_
from
paddle
import
_C_ops
,
_legacy_C_ops
from
paddle.common_ops_import
import
VarDesc
,
dygraph_only
,
dygraph_utils
from
..fluid.data_feeder
import
(
check_variable_and_dtype
,
check_type
,
check_dtype
,
check_type
,
check_variable_and_dtype
,
convert_dtype
,
)
from
..fluid.dygraph.inplace_utils
import
inplace_apis_in_dygraph_only
from
..fluid.layers
import
utils
# TODO: define math functions
from
..fluid.framework
import
_in_legacy_dygraph
from
..fluid.layers
import
elementwise_sub
,
utils
from
..framework
import
(
LayerHelper
,
_in_legacy_dygraph
,
_non_static_mode
,
_varbase_creator
,
convert_np_dtype_to_dtype_
,
core
,
in_dygraph_mode
,
)
from
..static
import
Variable
from
.creation
import
_complex_to_real_dtype
from
.layer_function_generator
import
generate_layer_fn
,
templatedoc
from
.manipulation
import
cast
from
.ops
import
abs
# noqa: F401
from
.ops
import
acos
# noqa: F401
from
.ops
import
acosh
# noqa: F401
from
.ops
import
asin
# noqa: F401
from
.ops
import
asinh
# noqa: F401
from
.ops
import
atan
# noqa: F401
from
.ops
import
atanh
# noqa: F401
from
.ops
import
ceil
# noqa: F401
from
.ops
import
ceil_
# noqa: F401
from
.ops
import
cos
# noqa: F401
from
.ops
import
tan
# noqa: F401
from
.ops
import
sinh
# noqa: F401
from
.ops
import
cosh
# noqa: F401
from
.ops
import
erf
# noqa: F401
from
.ops
import
exp
# noqa: F401
from
.ops
import
exp_
# noqa: F401
from
.ops
import
expm1
# noqa: F401
...
...
@@ -66,18 +68,12 @@ from .ops import round # noqa: F401
from
.ops
import
round_
# noqa: F401
from
.ops
import
rsqrt
# noqa: F401
from
.ops
import
rsqrt_
# noqa: F401
from
.ops
import
square
# noqa: F401
from
.ops
import
atan
# noqa: F401
from
.ops
import
erf
# noqa: F401
from
.ops
import
sin
# noqa: F401
from
.ops
import
sinh
# noqa: F401
from
.ops
import
sqrt
# noqa: F401
from
.ops
import
sqrt_
# noqa: F401
from
.ops
import
sin
# noqa: F401
from
.ops
import
asinh
# noqa: F401
from
.ops
import
acosh
# noqa: F401
from
.ops
import
atanh
# noqa: F401
from
..fluid.layers
import
elementwise_sub
from
paddle
import
_C_ops
,
_legacy_C_ops
from
.ops
import
square
# noqa: F401
from
.ops
import
tan
# noqa: F401
__all__
=
[]
...
...
python/paddle/tensor/ops.py
浏览文件 @
c39d1cff
...
...
@@ -12,16 +12,16 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from
..
import
_C_ops
,
_legacy_C_ops
from
..fluid.data_feeder
import
check_variable_and_dtype
from
..fluid.framework
import
_in_legacy_dygraph
,
in_dygraph_mode
from
..framework
import
LayerHelper
from
.layer_function_generator
import
(
generate_layer_fn
,
add_sample_code
,
generate_activation_fn
,
generate_inplace_fn
,
add_sample_code
,
generate_layer_fn
,
)
from
..fluid.data_feeder
import
check_variable_and_dtype
from
..fluid.framework
import
in_dygraph_mode
,
_in_legacy_dygraph
from
..framework
import
LayerHelper
from
..
import
_C_ops
,
_legacy_C_ops
__deprecated_func_name__
=
{
'tanh_shrink'
:
'tanhshrink'
,
...
...
python/paddle/tensor/random.py
浏览文件 @
c39d1cff
...
...
@@ -14,23 +14,27 @@
# TODO: define random functions
from
..framework
import
core
from
..framework
import
convert_np_dtype_to_dtype_
,
dygraph_only
from
..framework
import
LayerHelper
import
paddle
from
paddle
import
_C_ops
,
_legacy_C_ops
from
paddle.fluid.framework
import
(
_current_expected_place
,
_in_legacy_dygraph
,
in_dygraph_mode
,
)
from
paddle.static
import
Variable
from
..fluid.data_feeder
import
(
check_variable_and_dtype
,
check_type
,
check_dtype
,
check_shape
,
check_type
,
check_variable_and_dtype
,
)
from
..fluid.layers
import
utils
import
paddle
from
paddle
import
_C_ops
,
_legacy_C_ops
from
paddle.static
import
Variable
from
paddle.fluid.framework
import
(
in_dygraph_mode
,
_in_legacy_dygraph
,
_current_expected_place
,
from
..framework
import
(
LayerHelper
,
convert_np_dtype_to_dtype_
,
core
,
dygraph_only
,
)
__all__
=
[]
...
...
python/paddle/tensor/search.py
浏览文件 @
c39d1cff
...
...
@@ -11,17 +11,25 @@
# 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.
# TODO: define searching & indexing functions of a tensor
import
numpy
as
np
import
paddle
from
..framework
import
LayerHelper
,
convert_np_dtype_to_dtype_
from
paddle
import
_C_ops
,
_legacy_C_ops
from
paddle.common_ops_import
import
VarDesc
,
Variable
from
..fluid.data_feeder
import
check_dtype
,
check_variable_and_dtype
from
..framework
import
core
,
in_dygraph_mode
,
_non_static_mode
from
..fluid.framework
import
_in_legacy_dygraph
from
paddle.common_ops_import
import
Variable
from
paddle.common_ops_import
import
VarDesc
from
paddle
import
_C_ops
,
_legacy_C_ops
from
..framework
import
(
LayerHelper
,
_non_static_mode
,
convert_np_dtype_to_dtype_
,
core
,
in_dygraph_mode
,
)
# TODO: define searching & indexing functions of a tensor
# from ..fluid.layers import has_inf #DEFINE_ALIAS
# from ..fluid.layers import has_nan #DEFINE_ALIAS
...
...
python/paddle/tensor/stat.py
浏览文件 @
c39d1cff
...
...
@@ -14,15 +14,15 @@
# TODO: define statistical functions of a tensor
from
..static
import
Variable
from
..framework
import
LayerHelper
from
..framework
import
core
from
paddle.fluid.framework
import
_in_legacy_dygraph
,
in_dygraph_mode
from
.search
import
where
from
..fluid.data_feeder
import
check_type
,
check_variable_and_dtype
import
paddle
from
paddle
import
_C_ops
,
_legacy_C_ops
from
paddle.fluid.framework
import
_in_legacy_dygraph
,
in_dygraph_mode
from
..fluid.data_feeder
import
check_type
,
check_variable_and_dtype
from
..framework
import
LayerHelper
,
core
from
..static
import
Variable
from
.math
import
_get_reduce_axis_with_tensor
from
.search
import
where
__all__
=
[]
...
...
python/paddle/tensor/to_string.py
浏览文件 @
c39d1cff
...
...
@@ -13,9 +13,11 @@
# limitations under the License.
import
numpy
as
np
from
..framework
import
core
from
paddle.fluid.data_feeder
import
check_type
,
convert_dtype
from
..framework
import
core
__all__
=
[]
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录