@@ -248,31 +248,31 @@ pipeline {
248248 }
249249 post { always { retry(3 ) { deleteDir() } } }
250250 }
251- stage(' OpenCL tests async' ) {
252- agent { label " gpu-async" }
253- when {
254- expression {
255- runGpuAsync
256- }
257- }
258- steps {
259- deleteDir()
260- unstash ' MathSetup'
261- sh " echo CXX=${ env.CXX} -Werror > make/local"
262- sh " echo STAN_OPENCL=true>> make/local"
263- sh " echo OPENCL_PLATFORM_ID=0>> make/local"
264- sh " echo OPENCL_DEVICE_ID=${ OPENCL_DEVICE_ID} >> make/local"
265- sh " make -j${ env.PARALLEL} test-headers"
266- runTests(" test/unit/math/opencl" )
267- runTests(" test/unit/math/prim/fun/gp_exp_quad_cov_test" )
268- runTests(" test/unit/math/prim/fun/mdivide_left_tri_test" )
269- runTests(" test/unit/math/prim/fun/mdivide_right_tri_test" )
270- runTests(" test/unit/math/prim/fun/multiply_test" )
271- runTests(" test/unit/math/rev/fun/mdivide_left_tri_test" )
272- runTests(" test/unit/math/rev/fun/multiply_test" )
273- }
274- post { always { retry(3 ) { deleteDir() } } }
275- }
251+ // stage('OpenCL tests async') {
252+ // agent { label "gpu-async" }
253+ // when {
254+ // expression {
255+ // runGpuAsync
256+ // }
257+ // }
258+ // steps {
259+ // deleteDir()
260+ // unstash 'MathSetup'
261+ // sh "echo CXX=${env.CXX} -Werror > make/local"
262+ // sh "echo STAN_OPENCL=true>> make/local"
263+ // sh "echo OPENCL_PLATFORM_ID=0>> make/local"
264+ // sh "echo OPENCL_DEVICE_ID=${OPENCL_DEVICE_ID}>> make/local"
265+ // sh "make -j${env.PARALLEL} test-headers"
266+ // runTests("test/unit/math/opencl")
267+ // runTests("test/unit/math/prim/fun/gp_exp_quad_cov_test")
268+ // runTests("test/unit/math/prim/fun/mdivide_left_tri_test")
269+ // runTests("test/unit/math/prim/fun/mdivide_right_tri_test")
270+ // runTests("test/unit/math/prim/fun/multiply_test")
271+ // runTests("test/unit/math/rev/fun/mdivide_left_tri_test")
272+ // runTests("test/unit/math/rev/fun/multiply_test")
273+ // }
274+ // post { always { retry(3) { deleteDir() } } }
275+ // }
276276 stage(' Distribution tests' ) {
277277 agent { label " distribution-tests" }
278278 steps {
0 commit comments