-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #359 from drcanchi/gnn_logging_update
Add GNN training benchmark
- Loading branch information
Showing
10 changed files
with
121 additions
and
6 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
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
21 changes: 21 additions & 0 deletions
21
mlperf_logging/compliance_checker/training_4.0.0/closed_gnn.yaml
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,21 @@ | ||
- KEY: | ||
NAME: global_batch_size | ||
REQ: EXACTLY_ONE | ||
CHECK: " v['value'] > 0" | ||
|
||
- KEY: | ||
NAME: opt_name | ||
REQ: EXACTLY_ONE | ||
CHECK: " v['value'] == 'adam' " | ||
|
||
- KEY: | ||
NAME: opt_base_learning_rate | ||
REQ: EXACTLY_ONE | ||
CHECK: " v['value'] >= 0.0" | ||
|
||
- KEY: | ||
NAME: eval_accuracy | ||
REQ: AT_LEAST_ONE | ||
CHECK: | ||
- "'epoch_num' in v['metadata']" | ||
ATLEAST_ONE_CHECK: "v['value'] >= 0.72 and v['value'] < 1.0" |
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
7 changes: 7 additions & 0 deletions
7
mlperf_logging/compliance_checker/training_4.0.0/open_gnn.yaml
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,7 @@ | ||
|
||
- KEY: | ||
NAME: eval_accuracy | ||
REQ: AT_LEAST_ONE | ||
CHECK: | ||
- "'epoch_num' in v['metadata']" | ||
ATLEAST_ONE_CHECK: "v['value'] < 1.0" |
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 |
---|---|---|
|
@@ -28,6 +28,7 @@ | |
'unet3d' : 40, | ||
'rnnt': 10, | ||
'stable_diffusion': 10, | ||
'gnn': 10, | ||
}, | ||
"hpc": { | ||
'cosmoflow': 10, | ||
|
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,72 @@ | ||
{ | ||
|
||
"gnn_ref_4096": | ||
{ | ||
"Benchmark": "gnn", | ||
"Creator": "NVIDIA", | ||
"When": "Reference RCPs before v4.0", | ||
"Platform": "1xDGX-A100 and 8xDGX-A100", | ||
"BS": 4096, | ||
"Hyperparams": { | ||
"opt_base_learning_rate": 0.001 | ||
}, | ||
"Epochs to converge": [ | ||
0.85,0.75,0.75,0.80,0.80,0.75, | ||
0.75,0.85,0.75,0.75,0.80,0.80, | ||
0.80,0.75,0.80,0.80,0.80,0.80, | ||
0.80,0.85 ] | ||
}, | ||
|
||
"gnn_ref_16384": | ||
{ | ||
"Benchmark": "gnn", | ||
"Creator": "NVIDIA", | ||
"When": "Reference RCPs before v4.0", | ||
"Platform": "8xDGX-A100", | ||
"BS": 16384, | ||
"Hyperparams": { | ||
"opt_base_learning_rate": 0.002 | ||
}, | ||
"Epochs to converge": [ | ||
0.85,0.95,0.85,0.80,0.90,0.75, | ||
0.80,0.90,0.90,0.85,0.90,0.85, | ||
0.85,0.85,0.85,0.90,0.85,0.85, | ||
0.85,0.90 ] | ||
}, | ||
|
||
"gnn_ref_32768": | ||
{ | ||
"Benchmark": "gnn", | ||
"Creator": "Intel", | ||
"When": "Reference RCPs before v4.0", | ||
"Platform": "16xSPR-2S", | ||
"BS": 32768, | ||
"Hyperparams": { | ||
"opt_base_learning_rate": 0.002 | ||
}, | ||
"Epochs to converge": [ | ||
1.00,0.95,0.90,0.95,0.95,1.00, | ||
0.90,0.95,0.95,0.95,1.00,0.90, | ||
0.95,0.95,0.95,0.90,0.95,0.90, | ||
0.90,0.90 ] | ||
}, | ||
|
||
"gnn_ref_65536": | ||
{ | ||
"Benchmark": "gnn", | ||
"Creator": "NVIDIA", | ||
"When": "Reference RCPs before v4.0", | ||
"Platform": "32xDGX-A100", | ||
"BS": 65536, | ||
"Hyperparams": { | ||
"opt_base_learning_rate": 0.003 | ||
}, | ||
"Epochs to converge": [ | ||
1.25,1.20,1.25,1.20,1.15,1.15, | ||
1.15,1.20,1.15,1.20,1.25,1.15, | ||
1.20,1.20,1.15,1.25,1.20,1.15, | ||
1.10,1.15 | ||
] | ||
} | ||
} | ||
|
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