-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Your Name
committed
Jun 8, 2023
1 parent
b5539ea
commit 42eab04
Showing
9 changed files
with
59 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[submodule "benchmarks/mlperf/apex"] | ||
path = benchmarks/mlperf/apex | ||
url = https://github.com/NVIDIA/apex.git | ||
|
||
[submodule "benchmarks/mlperf/training_results_v2.1"] | ||
path = benchmarks/mlperf/training_results_v2.1 | ||
url = https://github.com/mlcommons/training_results_v2.1.git |
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,10 @@ | ||
from milabench.pack import Package | ||
|
||
|
||
class MLPerfBenchmark(Package): | ||
base_requirements = "requirements.in" | ||
main_script = "main.py" | ||
|
||
|
||
__pack__ = MLPerfBenchmark | ||
|
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 @@ | ||
|
||
import sys | ||
import os | ||
|
||
|
||
FOLDER = os.path.dirname(__file__) | ||
BENCH = "training_results_v2.1/NVIDIA/benchmarks/bert/implementations/pytorch-preview" | ||
|
||
print(sys.path) | ||
sys.path.append(os.path.join(FOLDER, BENCH)) | ||
print(sys.path) | ||
|
||
import run_squad |
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,4 @@ | ||
git+https://github.com/NVIDIA/mlperf-common.git | ||
git+https://github.com/NVIDIA/apex.git | ||
git+https://github.com/mlcommons/logging.git | ||
boto3 |
Submodule training_results_v2.1
added at
158189
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