forked from microsoft/nni
-
Notifications
You must be signed in to change notification settings - Fork 0
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 #10 from SparkSnail/dev-windows
Support gpu in windows
- Loading branch information
Showing
9 changed files
with
189 additions
and
19 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
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
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,36 @@ | ||
jobs: | ||
- job: 'Test' | ||
|
||
steps: | ||
- script: | | ||
powershell.exe -file install.ps1 | ||
displayName: 'Install nni toolkit via source code' | ||
- script: | | ||
python -m pip install scikit-learn==0.20.0 --user | ||
python -m pip install keras==2.1.6 --user | ||
python -m pip install tensorflow-gpu==1.10.0 --user | ||
displayName: 'Install dependencies for integration tests' | ||
- script: | | ||
cd test | ||
python generate_ts_config.py | ||
displayName: 'generate config files' | ||
- script: | | ||
cd test | ||
powershell.exe -file unittest.ps1 | ||
displayName: 'unit test' | ||
- script: | | ||
cd test | ||
python naive_test.py | ||
displayName: 'Naive test' | ||
- script: | | ||
cd test | ||
python tuner_test.py | ||
displayName: 'Built-in tuners / assessors tests' | ||
- script: | | ||
cd test | ||
python metrics_test.py | ||
displayName: 'Trial job metrics test' | ||
- script: | | ||
cd test | ||
python config_test.py --ts local --exclude cifar10,smac,batchtuner | ||
displayName: 'Examples and advanced features tests on local machine' |
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