Skip to content

Commit aebbdf1

Browse files
committed
Merge commit '45d1de233ef3685e4e1ad3cd0c2d0392aa1bfd71' into HEAD
2 parents 640cb1a + 45d1de2 commit aebbdf1

55 files changed

Lines changed: 13105 additions & 6531 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Jenkinsfile

100644100755
Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -487,6 +487,12 @@ pipeline {
487487
steps {
488488
script {
489489
retry(3) { checkout scm }
490+
491+
if (params.withRowVector || isBranch('develop') || isBranch('master')) {
492+
sh "echo CXXFLAGS+=-DSTAN_TEST_ROW_VECTORS >> make/local"
493+
sh "echo CXXFLAGS+=-DSTAN_PROB_TEST_ALL >> make/local"
494+
}
495+
490496
if (params.runAllDistributions || isBranch('develop') || isBranch('master')) {
491497
changedDistributionTests = sh(script:"python3 test/prob/getDependencies.py --pretend-all", returnStdout:true).trim().readLines()
492498
} else {
@@ -511,12 +517,17 @@ pipeline {
511517
steps {
512518
script {
513519
def tests = [:]
514-
for (f in changedDistributionTests.collate(24)) {
520+
521+
def executors = 10
522+
def tests_per_executor = Math.ceil((changedDistributionTests.size() / executors).doubleValue()).toInteger()
523+
def idx = 0
524+
for (f in changedDistributionTests.collate(tests_per_executor)) {
525+
idx = idx + 1
515526
def names = f.join(" ")
516-
tests["Distribution Tests: ${names}"] = { node ("linux && docker && 8core") {
527+
tests["Distribution Tests: ${idx} / ${executors}"] = { node ("linux && docker && 8core") {
517528
deleteDir()
518529
docker.image('stanorg/ci:gpu-cpp17').inside {
519-
catchError {
530+
catchError(buildResult: "FAILURE", stageResult: "FAILURE") {
520531
unstash 'MathSetup'
521532
sh """
522533
echo CXX=${CLANG_CXX} > make/local

doxygen/doxygen.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2295,7 +2295,7 @@ INCLUDE_PATH = ./ \
22952295
lib/eigen_3.4.0 \
22962296
lib/sundials_6.1.1/include \
22972297
lib/sundials_6.1.1/src/sundials \
2298-
lib/opencl_3.0.0 \
2298+
lib/opencl_v2025.07.22 \
22992299
lib/benchmark_1.5.1/googletest/googletest/include \
23002300
lib/benchmark_1.5.1/googletest/googletest
23012301

lib/opencl_3.0.0/CL/STAN_CHANGES

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/opencl_3.0.0/CL/cl_d3d10.h

Lines changed: 0 additions & 128 deletions
This file was deleted.

lib/opencl_3.0.0/CL/cl_d3d11.h

Lines changed: 0 additions & 128 deletions
This file was deleted.

0 commit comments

Comments
 (0)