Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

为 paddle.linalg.norm 进行功能升级与对齐 - 增加matrix_norm #60070

Merged
merged 41 commits into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
Changes from 36 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
817babd
xian zhan ge keng
zbt78 Dec 15, 2023
5e301ef
fix bug
zbt78 Dec 28, 2023
38ff04b
fix bug
zbt78 Jan 1, 2024
9b04d03
Merge branch 'develop' into norm-enhance
zbt78 Jan 2, 2024
b579461
fix bug
zbt78 Jan 2, 2024
8a33726
Merge branch 'develop' into norm-enhance
zbt78 Jan 3, 2024
8ebf9a2
remove useless code
zbt78 Jan 3, 2024
4d31bfb
fix
zbt78 Jan 3, 2024
746ca2a
fix coverage
zbt78 Jan 4, 2024
567235a
fix test
zbt78 Jan 4, 2024
7fb7235
add enable_static in test
zbt78 Jan 5, 2024
a17c089
remove c++ impl
zbt78 Jan 9, 2024
51dd9a8
fix conflict
zbt78 Jan 16, 2024
25941c1
fix vector_norm
zbt78 Jan 16, 2024
00e6f37
add test for vector_norm
zbt78 Jan 17, 2024
9311dc0
simplify vector_norm impl
zbt78 Jan 17, 2024
26d0824
update
zbt78 Jan 17, 2024
ffd1cf4
update
zbt78 Jan 18, 2024
6dfcff6
norm -> vector_norm + matrix_norm
zbt78 Jan 18, 2024
7b67dce
update
zbt78 Jan 18, 2024
d9bd675
simplify again
zbt78 Jan 19, 2024
059246f
update
zbt78 Jan 20, 2024
b9f1ba5
set default p = 2.0
zbt78 Jan 20, 2024
80dc9d7
update
zbt78 Jan 22, 2024
96382c6
update
zbt78 Jan 22, 2024
fc36de3
update
zbt78 Jan 22, 2024
3288bc6
fix ci and remove 'reduce_all'
zbt78 Jan 23, 2024
9bc8ee3
adapt fro
zbt78 Jan 23, 2024
da0d533
add dygraph test for norm
zbt78 Jan 23, 2024
8de1904
fix test_zero_dim_tensor.py
zbt78 Jan 25, 2024
f5a8a7a
fix linalg.py
zbt78 Jan 29, 2024
412b1ed
fix merge
zbt78 Jan 29, 2024
7d5c0c2
fix paddle/linalg.py
zbt78 Jan 29, 2024
53c3890
Merge remote-tracking branch 'upstream/develop' into norm-enhance
zbt78 Jan 30, 2024
0875ff3
Merge remote-tracking branch 'upstream/develop' into norm-enhance
zbt78 Jan 30, 2024
1f084cc
fix test_norm
zbt78 Jan 31, 2024
12bdd50
fix
zbt78 Feb 1, 2024
10b57c2
Merge remote-tracking branch 'upstream/develop' into norm-enhance
zbt78 Feb 1, 2024
16155b3
Merge remote-tracking branch 'upstream/develop' into norm-enhance
zbt78 Feb 1, 2024
5d1130d
fix
zbt78 Feb 1, 2024
d40b025
add None for porder in the table
zbt78 Feb 1, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions python/paddle/linalg.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
lu,
lu_unpack,
matrix_exp,
matrix_norm,
matrix_power,
matrix_rank,
multi_dot,
Expand All @@ -46,6 +47,7 @@
__all__ = [
'cholesky',
'norm',
'matrix_norm',
'vector_norm',
'cond',
'cov',
Expand Down
Loading