Skip to content

Commit

Permalink
Merge pull request #453 from stratika/fix/jenkins/spirv
Browse files Browse the repository at this point in the history
Update Jenkinsfile regarding the execution of SPIR-V with the OpenCL and Intel LevelZero runtimes
  • Loading branch information
jjfumero authored Jun 19, 2024
2 parents e843843 + 7d54744 commit 16283a3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -168,16 +168,16 @@ void buildAndTest(String JDK, String tornadoProfile) {
stage("SPIR-V (OpenCL Runtime): Unit Tests") {
timeout(time: 12, unit: 'MINUTES') {
sh 'tornado --devices'
sh 'tornado-test --verbose -J"-Dtornado.ptx.priority=100 -Dtornado.unittests.device=1:0"'
sh 'tornado-test -V -J" -Dtornado.ptx.priority=100 -Dtornado.unittests.device=1:0 -Dtornado.device.memory=1MB" uk.ac.manchester.tornado.unittests.fails.HeapFail#test03'
sh 'tornado-test --verbose -J"-Dtornado.ptx.priority=100 -Dtornado.unittests.device=1:0 -Dtornado.spirv.dispatcher=opencl"'
sh 'tornado-test -V -J" -Dtornado.ptx.priority=100 -Dtornado.unittests.device=1:0 -Dtornado.spirv.dispatcher=opencl -Dtornado.device.memory=1MB" uk.ac.manchester.tornado.unittests.fails.HeapFail#test03'
sh 'test-native.sh'
}
}
stage("SPIR-V (LevelZero Runtime): Unit Tests") {
timeout(time: 12, unit: 'MINUTES') {
sh 'tornado --devices'
sh 'tornado-test --verbose -J"-Dtornado.ptx.priority=100 -Dtornado.unittests.device=1:1"'
sh 'tornado-test -V -J" -Dtornado.ptx.priority=100 -Dtornado.unittests.device=1:1 -Dtornado.device.memory=1MB" uk.ac.manchester.tornado.unittests.fails.HeapFail#test03'
sh 'tornado-test --verbose -J"-Dtornado.ptx.priority=100 -Dtornado.unittests.device=1:1 -Dtornado.spirv.dispatcher=levelzero"'
sh 'tornado-test -V -J" -Dtornado.ptx.priority=100 -Dtornado.unittests.device=1:1 -Dtornado.spirv.dispatcher=levelzero -Dtornado.device.memory=1MB" uk.ac.manchester.tornado.unittests.fails.HeapFail#test03'
sh 'test-native.sh'
}
}
Expand Down

0 comments on commit 16283a3

Please sign in to comment.