-
Notifications
You must be signed in to change notification settings - Fork 539
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into arjunsuresh-patch-2
- Loading branch information
Showing
31 changed files
with
330 additions
and
824 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
hide: | ||
- toc | ||
--- | ||
|
||
# Graph Neural Network using R-GAT | ||
|
||
## Dataset | ||
|
||
The benchmark implementation run command will automatically download the validation and calibration datasets and do the necessary preprocessing. In case you want to download only the datasets, you can use the below commands. | ||
|
||
=== "Full Dataset" | ||
R-GAT validation run uses the IGBH dataset consisting of 547,306,935 nodes and 5,812,005,639 edges. | ||
|
||
### Get Full Dataset | ||
``` | ||
cm run script --tags=get,dataset,igbh,_full -j | ||
``` | ||
|
||
=== "Debug Dataset" | ||
R-GAT debug run uses the IGBH debug dataset(tiny). | ||
|
||
### Get Full Dataset | ||
``` | ||
cm run script --tags=get,dataset,igbh,_debug -j | ||
``` | ||
|
||
## Model | ||
The benchmark implementation run command will automatically download the required model and do the necessary conversions. In case you want to only download the official model, you can use the below commands. | ||
|
||
Get the Official MLPerf R-GAT Model | ||
|
||
=== "PyTorch" | ||
|
||
### PyTorch | ||
``` | ||
cm run script --tags=get,ml-model,rgat -j | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
hide: | ||
- toc | ||
--- | ||
|
||
|
||
# Graph Neural Network using R-GAT | ||
|
||
|
||
=== "MLCommons-Python" | ||
## MLPerf Reference Implementation in Python | ||
|
||
{{ mlperf_inference_implementation_readme (4, "rgat", "reference", devices = ["CPU", "CUDA"]) }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# All memory requirements in GB | ||
resnet: | ||
reference: | ||
fp32: | ||
system_memory: 8 | ||
accelerator_memory: 4 | ||
disk_storage: 25 | ||
nvidia: | ||
int8: | ||
system_memory: 8 | ||
accelerator_memory: 4 | ||
disk_storage: 100 | ||
intel: | ||
int8: | ||
system_memory: 8 | ||
accelerator_memory: 0 | ||
disk_storage: 50 | ||
qualcomm: | ||
int8: | ||
system_memory: 8 | ||
accelerator_memory: 8 | ||
disk_storage: 50 | ||
retinanet: | ||
reference: | ||
fp32: | ||
system_memory: 8 | ||
accelerator_memory: 8 | ||
disk_storage: 200 | ||
nvidia: | ||
int8: | ||
system_memory: 8 | ||
accelerator_memory: 8 | ||
disk_storage: 200 | ||
intel: | ||
int8: | ||
system_memory: 8 | ||
accelerator_memory: 0 | ||
disk_storage: 200 | ||
qualcomm: | ||
int8: | ||
system_memory: 8 | ||
accelerator_memory: 8 | ||
disk_storage: 200 | ||
rgat: | ||
reference: | ||
fp32: | ||
system_memory: 768 | ||
accelerator_memory: 8 | ||
disk_storage: 2300 | ||
|
Oops, something went wrong.