Skip to content

Commit

Permalink
Fixed testcases.yml to use build SKU gpu instead of default to align …
Browse files Browse the repository at this point in the history
…with the previous build SKU option value change in TestDriver
  • Loading branch information
amitaga committed Jan 15, 2016
1 parent d5a3a89 commit eb0e08e
Show file tree
Hide file tree
Showing 12 changed files with 26 additions and 26 deletions.
4 changes: 2 additions & 2 deletions Tests/EndToEndTests/Image/QuickE2E/testcases.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
dataDir: ../Data
tags:
# running on every BVT job in 'I' (Image) leg:
- bvt-i (build_sku == 'default') and device=='gpu'
- bvt-i (build_sku == 'gpu') and device=='gpu'
# running every Nightly job in 'I' leg
- nightly-i (build_sku == 'default') and device=='gpu'
- nightly-i (build_sku == 'gpu') and device=='gpu'

testCases:
CNTK Run must be completed:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ dataDir: ../../Data
tags:
# running on every BVT job in 'P' (Parallel) leg in Debug-GPU and Release-CPU configurations:
# Also skipping Release-CPU on linux to save time (for now due to unknown reason it runs much longer comparing to windows)
- bvt-p ((build_sku == 'default') or (build_sku == '1bitsgd')) and ((flavor=='debug') ^ (device=='cpu')) and not (os=='linux' and device=='cpu')
- bvt-p ((build_sku == 'gpu') or (build_sku == '1bitsgd')) and ((flavor=='debug') ^ (device=='cpu')) and not (os=='linux' and device=='cpu')
# running unconditionally on every Nightly job in 'P' leg
- nightly-p ((build_sku == 'default') or (build_sku == '1bitsgd'))
- nightly-p ((build_sku == 'gpu') or (build_sku == '1bitsgd'))

testCases:
Must train epochs in exactly same order and parameters for each MPI Rank:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ dataDir: ../../Data

tags:
# running on every BVT job in 'P' (Parallel) leg in Debug-GPU and Release-CPU configurations:
- bvt-p ((build_sku == 'default') or (build_sku == '1bitsgd')) and ((flavor=='debug') ^ (device=='cpu'))
- bvt-p ((build_sku == 'gpu') or (build_sku == '1bitsgd')) and ((flavor=='debug') ^ (device=='cpu'))
# running unconditionally on every Nightly job in 'P' leg
- nightly-p ((build_sku == 'default') or (build_sku == '1bitsgd'))
- nightly-p ((build_sku == 'gpu') or (build_sku == '1bitsgd'))

testCases:
Must train epochs in exactly same order and parameters for each MPI Rank:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ tags:
# is being disabled on the CPU until the retirement of those machines

# running on every BVT job in 'S' (Speech) leg in Debug-GPU and Release-CPU configurations:
# - bvt-s (build_sku == 'default') and ((flavor=='debug') ^ (device=='cpu'))
# - bvt-s (build_sku == 'gpu') and ((flavor=='debug') ^ (device=='cpu'))
# running unconditionally on every Nightly job in 'S' leg
# - nightly-s (build_sku == 'default')
# - nightly-s (build_sku == 'gpu')

# running on every BVT job in 'S' (Speech) leg in Debug-GPU configuration:
- bvt-s (build_sku == 'default') and ((flavor=='debug') and (device=='gpu'))
- bvt-s (build_sku == 'gpu') and ((flavor=='debug') and (device=='gpu'))
# running unconditionally on every Nightly job in 'S' leg
- nightly-s (build_sku == 'default') and (device=='gpu')
- nightly-s (build_sku == 'gpu') and (device=='gpu')

testCases:
CNTK Run must be completed:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
dataDir: ../../Data
tags:
# running on every BVT job in 'P' (Speech) leg in Debug-GPU and Release-CPU configurations:
- bvt-p ((build_sku == 'default') or (build_sku == '1bitsgd')) and ((flavor=='debug') ^ (device=='cpu'))
- bvt-p ((build_sku == 'gpu') or (build_sku == '1bitsgd')) and ((flavor=='debug') ^ (device=='cpu'))
# running unconditionally on every Nightly job in 'P' leg
- nightly-p ((build_sku == 'default') or (build_sku == '1bitsgd'))
- nightly-p ((build_sku == 'gpu') or (build_sku == '1bitsgd'))

testCases:
Must train epochs in exactly same order and parameters for each MPI Rank:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
dataDir: ../../Data
tags:
# running on every BVT job in 'S' (Speech) leg in Debug-GPU and Release-CPU configurations:
- bvt-s ((build_sku == 'default') or (build_sku == '1bitsgd')) and ((flavor=='debug') ^ (device=='cpu'))
- bvt-s ((build_sku == 'gpu') or (build_sku == '1bitsgd')) and ((flavor=='debug') ^ (device=='cpu'))
# running unconditionally on every Nightly job in 'S' leg
- nightly-s ((build_sku == 'default') or (build_sku == '1bitsgd'))
- nightly-s ((build_sku == 'gpu') or (build_sku == '1bitsgd'))

testCases:
Must train epochs in exactly same order and parameters for each MPI Rank:
Expand Down
4 changes: 2 additions & 2 deletions Tests/EndToEndTests/Speech/DNN/SequenceTraining/testcases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ dataDir: ../../Data
tags:
# Note: Sequence training is currently not supported on the CPU
# running on every BVT job in 'S' (Speech) leg in Debug-GPU configuration:
- bvt-s (build_sku == 'default') and ((flavor=='debug') and (device=='gpu'))
- bvt-s (build_sku == 'gpu') and ((flavor=='debug') and (device=='gpu'))
# running GPU configuration on every Nightly job in 'S' leg
- nightly-s (build_sku == 'default') and (device=='gpu')
- nightly-s (build_sku == 'gpu') and (device=='gpu')

testCases:
CNTK Run must be completed:
Expand Down
4 changes: 2 additions & 2 deletions Tests/EndToEndTests/Speech/LSTM/FullUtterance/testcases.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
dataDir: ../../Data
tags:
# running on every BVT job in 'L' (LSTM) leg in Debug-GPU and Release-CPU configurations:
- bvt-l (build_sku == 'default') and ((flavor=='debug') ^ (device=='cpu'))
- bvt-l (build_sku == 'gpu') and ((flavor=='debug') ^ (device=='cpu'))
# running unconditionally on every Nightly job in 'L' leg
- nightly-l (build_sku == 'default')
- nightly-l (build_sku == 'gpu')

testCases:
CNTK Run must be completed:
Expand Down
4 changes: 2 additions & 2 deletions Tests/EndToEndTests/Speech/LSTM/Truncated/testcases.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
dataDir: ../../Data
tags:
# running on every BVT job in 'L' (LSTM) leg in Debug-GPU and Release-CPU configurations:
- bvt-l (build_sku == 'default') and ((flavor=='debug') ^ (device=='cpu'))
- bvt-l (build_sku == 'gpu') and ((flavor=='debug') ^ (device=='cpu'))
# running unconditionally on every Nightly job in 'L' leg
- nightly-l (build_sku == 'default')
- nightly-l (build_sku == 'gpu')

testCases:
CNTK Run must be completed:
Expand Down
4 changes: 2 additions & 2 deletions Tests/EndToEndTests/Speech/QuickE2E/testcases.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
dataDir: ../Data
tags:
# running on every BVT job in 'S' (Speech) leg in Debug-GPU and Release-CPU configurations:
- bvt-s (build_sku == 'default') and ((flavor=='debug') ^ (device=='cpu'))
- bvt-s (build_sku == 'gpu') and ((flavor=='debug') ^ (device=='cpu'))
# running unconditionally on every Nightly job in 'S' leg
- nightly-s (build_sku == 'default')
- nightly-s (build_sku == 'gpu')

testCases:
CNTK Run must be completed:
Expand Down
4 changes: 2 additions & 2 deletions Tests/EndToEndTests/Speech/SVD/testcases.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
dataDir: ../Data
tags:
# running on every BVT job in 'S' (Speech) leg in Debug-GPU and Release-CPU configurations:
- bvt-s (build_sku == 'default') and ((flavor=='debug') ^ (device=='cpu'))
- bvt-s (build_sku == 'gpu') and ((flavor=='debug') ^ (device=='cpu'))
# running unconditionally on every Nightly job in 'S' leg
- nightly-s (build_sku == 'default')
- nightly-s (build_sku == 'gpu')

testCases:
CNTK Run must be completed:
Expand Down
4 changes: 2 additions & 2 deletions Tests/EndToEndTests/Speech/Simple/testcases.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
dataDir: ../Data
tags:
# running on every BVT job in 'S' (Speech) leg in Debug-GPU and Release-CPU configurations:
- bvt-s (build_sku == 'default') and ((flavor=='debug') ^ (device=='cpu'))
- bvt-s (build_sku == 'gpu') and ((flavor=='debug') ^ (device=='cpu'))
# running unconditionally on every Nightly job in 'S' leg
- nightly-s (build_sku == 'default')
- nightly-s (build_sku == 'gpu')

testCases:
CNTK Run must be completed:
Expand Down

0 comments on commit eb0e08e

Please sign in to comment.