Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ pipeline {
echo "CXXFLAGS+=-march=core2" > cmdstan/make/local
echo "PRECOMPILED_HEADERS=false" >> cmdstan/make/local
cd cmdstan; make clean-all; git show HEAD --stat; cd ..
CXX="$CXX" ./compare-optimizer.sh "--tests-file all.tests --num-samples=10 -j$PARALLEL" "--O1" "$(readlink -f ../bin/linux-stanc)"
CXX="$CXX" ./compare-optimizer.sh "--tests-file all.tests --num-samples=15 -j$PARALLEL" "--O1" "$(readlink -f ../bin/linux-stanc)"
'''
}

Expand Down
2 changes: 1 addition & 1 deletion test/integration/good/compiler-optimizations/cpp.expected
Original file line number Diff line number Diff line change
Expand Up @@ -31412,7 +31412,7 @@ stan::math::profile_map profiles__;
static constexpr std::array<const char*, 7> locations_array__ =
{" (found before start of program)",
" (in 'lcm-fails.stan', line 6, column 2 to column 22)",
" (in 'lcm-fails.stan', line 9, column 2 to column 23)",
" (in 'lcm-fails.stan', line 10, column 2 to column 23)",
" (in 'lcm-fails.stan', line 2, column 2 to column 17)",
" (in 'lcm-fails.stan', line 3, column 8 to column 9)",
" (in 'lcm-fails.stan', line 3, column 2 to column 18)",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19146,7 +19146,7 @@ stan::math::profile_map profiles__;
static constexpr std::array<const char*, 7> locations_array__ =
{" (found before start of program)",
" (in 'lcm-fails.stan', line 6, column 2 to column 22)",
" (in 'lcm-fails.stan', line 9, column 2 to column 23)",
" (in 'lcm-fails.stan', line 10, column 2 to column 23)",
" (in 'lcm-fails.stan', line 2, column 2 to column 17)",
" (in 'lcm-fails.stan', line 3, column 8 to column 9)",
" (in 'lcm-fails.stan', line 3, column 2 to column 18)",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21276,7 +21276,7 @@ stan::math::profile_map profiles__;
static constexpr std::array<const char*, 7> locations_array__ =
{" (found before start of program)",
" (in 'lcm-fails.stan', line 6, column 2 to column 22)",
" (in 'lcm-fails.stan', line 9, column 2 to column 23)",
" (in 'lcm-fails.stan', line 10, column 2 to column 23)",
" (in 'lcm-fails.stan', line 2, column 2 to column 17)",
" (in 'lcm-fails.stan', line 3, column 8 to column 9)",
" (in 'lcm-fails.stan', line 3, column 2 to column 18)",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ data {
parameters {
array[J] real theta;
}

model {
y ~ normal(theta, 1);
}
Expand Down