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

CuGraph Example Fixes #9577

Merged
merged 34 commits into from
Aug 7, 2024
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
64d6fc9
initial write
alexbarghi-nv Jun 1, 2022
32cd7ca
more hard work, demo to follow
alexbarghi-nv Jun 3, 2022
d578b15
add example
alexbarghi-nv Jun 3, 2022
cbdfc26
follow
alexbarghi-nv Jun 3, 2022
c1cb247
add newline
alexbarghi-nv Jun 3, 2022
fac4f9e
Update torch_geometric/data/cugraph/cugraph_data.py
alexbarghi-nv Jun 6, 2022
9198d97
Update torch_geometric/data/cugraph/cugraph_data.py
alexbarghi-nv Jun 6, 2022
23bbefe
Update torch_geometric/nn/conv/message_passing.py
alexbarghi-nv Jun 6, 2022
ba58ca2
Update torch_geometric/nn/conv/message_passing.py
alexbarghi-nv Jun 6, 2022
8830e82
Update torch_geometric/typing.py
alexbarghi-nv Jun 6, 2022
4221cf6
Update torch_geometric/data/cugraph/cugraph_data.py
alexbarghi-nv Jun 6, 2022
4063d13
Update torch_geometric/data/cugraph/cugraph_data.py
alexbarghi-nv Jun 6, 2022
1f2f78a
remove anytensor typing
alexbarghi-nv Jun 7, 2022
9eb546c
Merge branch 'initial-cugraph-storage' of https://github.com/alexbarg…
alexbarghi-nv Jun 7, 2022
a6b6432
fixes and changes
alexbarghi-nv Jun 7, 2022
172e953
small fixes
alexbarghi-nv Jun 7, 2022
d7cf2ba
Merge pull request #1 from alexbarghi-nv/initial-cugraph-storage
alexbarghi-nv Jun 14, 2022
7982e17
fix merge conflict
alexbarghi-nv Aug 3, 2022
5ef3ee8
fix merge conflict
alexbarghi-nv Sep 9, 2022
d476386
Merge branch 'master' of https://github.com/pyg-team/pytorch_geometric
alexbarghi-nv Sep 23, 2022
e81881e
resolve merge conflict
alexbarghi-nv Aug 6, 2024
06ce89a
minor fixes
alexbarghi-nv Aug 6, 2024
9aedc38
remove unwanted files
alexbarghi-nv Aug 6, 2024
23f1ed8
remove old unwanted file
alexbarghi-nv Aug 6, 2024
68d2db7
fix
alexbarghi-nv Aug 6, 2024
1035711
c
alexbarghi-nv Aug 6, 2024
e23035d
revert
alexbarghi-nv Aug 6, 2024
bd9960e
revert message passing
alexbarghi-nv Aug 6, 2024
cbcf690
add line
alexbarghi-nv Aug 6, 2024
ba98b6a
revert typing
alexbarghi-nv Aug 6, 2024
c2c4c7a
z
alexbarghi-nv Aug 6, 2024
009db20
remove log file
alexbarghi-nv Aug 6, 2024
4cf1a3e
update changelog
alexbarghi-nv Aug 6, 2024
316b30f
correct changelog
alexbarghi-nv Aug 6, 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
Prev Previous commit
correct changelog
  • Loading branch information
alexbarghi-nv committed Aug 6, 2024
commit 316b30f50127281897b69e32981a2497260b5ceb
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

### Fixed

- Fixed an issue where import order in the single-GPU `cugraph` example could cause an `rmm` error ([#9577](https://github.com/pyg-team/pytorch_geometric/pull/9577))
- Fixed an issue where import order in the multi-GPU `cugraph` example could cause an `rmm` error ([#9577](https://github.com/pyg-team/pytorch_geometric/pull/9577))
- Made the output of the single-GPU `cugraph` example more readable ([#9577](https://github.com/pyg-team/pytorch_geometric/pull/9577))
- Fixed `load_state_dict` behavior with lazy parameters in `HeteroDictLinear` ([#9493](https://github.com/pyg-team/pytorch_geometric/pull/9493))
- `Sequential` can now be properly pickled ([#9369](https://github.com/pyg-team/pytorch_geometric/pull/9369))
Expand Down
Loading