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

[Pir]Fix Value eq error when using set #58896

Merged
merged 53 commits into from
Dec 18, 2023
Merged
Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
6539a97
[Pir]Fix Value eq error when using set
Nov 10, 2023
3899a7d
Fix iter
Nov 10, 2023
7f6c298
Refine code
Nov 10, 2023
0793a38
add ValueDict
zrr1999 Nov 10, 2023
f8abfa3
fix
zrr1999 Nov 13, 2023
6e5947b
update valueset
zrr1999 Nov 13, 2023
09f5eac
update dict
zrr1999 Nov 13, 2023
ad7461d
fix bug
zrr1999 Nov 14, 2023
531621c
improve
zrr1999 Nov 14, 2023
6b252fc
fix
zrr1999 Nov 14, 2023
7eb2685
fix contains
zrr1999 Nov 14, 2023
d7792bd
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
Nov 15, 2023
bc174c9
Fix set(Value) or dict[Value] = xx code
Nov 15, 2023
8a6f0a7
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
Nov 16, 2023
d7b38e8
Fix ut
Nov 16, 2023
963d0f8
Fix double grad ut
Nov 16, 2023
d299a50
Fix ut
Nov 17, 2023
8bae46b
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
Nov 24, 2023
ba7a2cd
Forbid opresult hash
Nov 24, 2023
4a50818
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
Nov 26, 2023
ace1ae1
Fix set and dict
Nov 26, 2023
cd3e2ea
Fix dy2st
Nov 26, 2023
470a2aa
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
Dec 7, 2023
faefbe8
Refine code
Dec 7, 2023
526eecd
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
Dec 7, 2023
78cbe1b
Forbid eq
Dec 7, 2023
9be9129
Fix map and value_eq
Dec 7, 2023
176e09b
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
Dec 8, 2023
ea46d6b
Fix None hash
Dec 8, 2023
dcaf6c4
Fix decomp
Dec 8, 2023
1df44e2
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
Dec 11, 2023
55cbfcc
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
Dec 12, 2023
b8b6416
Refine value set/dict
Dec 12, 2023
16bc3c6
Add hash
Dec 12, 2023
3b0a7cd
fix clone program, return a assciated array.
2742195759 Dec 12, 2023
1a7767d
Merge commit 'refs/pull/58896/head' of https://github.com/PaddlePaddl…
2742195759 Dec 12, 2023
7ab860c
Fix iter
Dec 12, 2023
31686de
Fix code
Dec 13, 2023
294abe4
Fix backward
Dec 13, 2023
b168af9
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
Dec 13, 2023
96d8cf3
Fix decomp and add copy()
Dec 13, 2023
e3637da
Format code
Dec 13, 2023
ef65985
Fix ut
Dec 14, 2023
7e6422c
Fix layer params set
Dec 14, 2023
a43cd6e
Fix prim op test
Dec 14, 2023
cf1ce82
Fix named_parameters
Dec 14, 2023
88b3e9f
Support value __eq__
Dec 15, 2023
4ec0f71
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
Dec 15, 2023
2611c9f
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
Dec 15, 2023
7b8cf7e
Fix test cond ==
Dec 15, 2023
6af0553
Add ut for value set/dict
Dec 18, 2023
b8953f2
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
Dec 18, 2023
4464870
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
Dec 18, 2023
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
Prev Previous commit
Next Next commit
Fix iter
  • Loading branch information
0x45f committed Dec 12, 2023
commit 7ab860c6b7a4e8c6ad6e653f49f71a06cd7ce5cb
2 changes: 1 addition & 1 deletion python/paddle/autograd/backward_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def __eq__(self, other) -> bool:
class ValueDict:
def __init__(
self,
iter,
iter=None,
*,
default_factory=None,
):
Expand Down