-
Notifications
You must be signed in to change notification settings - Fork 3k
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
[GRAPHBOLT] Activation of several graphbolt
tests for CPU
#7586
base: master
Are you sure you want to change the base?
Conversation
Not authorized to trigger CI. Please ask core developer to help trigger via issuing comment:
|
Not authorized to trigger CI. Please ask core developer to help trigger via issuing comment:
|
test_exclude_seed_edges
for CPUgraphbolt
tests for CPU
Not authorized to trigger CI. Please ask core developer to help trigger via issuing comment:
|
@@ -970,7 +966,7 @@ def test_SubgraphSampler_unique_csc_format_Homo_Node_gpu(labor): | |||
deduplicate=True, | |||
) | |||
|
|||
if torch.cuda.get_device_capability()[0] < 7: | |||
if F.ctx() != F.cpu() and torch.cuda.get_device_capability()[0] < 7: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd prefer to keep the check on the top of the test cases. CPU is actually not running even after your fix.
Not authorized to trigger CI. Please ask core developer to help trigger via issuing comment:
|
Description
The few existing
graphbolt
have been modified to run on the CPU as well.Checklist
Please feel free to remove inapplicable items for your PR.
Changes