We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fdfb00 commit efde714Copy full SHA for efde714
src/cmdstan/write_stan_flags.hpp
@@ -7,11 +7,6 @@
7
namespace cmdstan {
8
9
void write_stan_flags(stan::callbacks::writer &writer) {
10
-#ifdef STAN_OPENCL
11
- writer("STAN_OPENCL=true");
12
-#else
13
- writer("STAN_OPENCL=false");
14
-#endif
15
#ifdef STAN_THREADS
16
writer("STAN_THREADS=true");
17
#else
@@ -22,6 +17,11 @@ void write_stan_flags(stan::callbacks::writer &writer) {
22
23
18
writer("STAN_MPI=false");
24
19
#endif
20
+#ifdef STAN_OPENCL
21
+ writer("STAN_OPENCL=true");
+#else
+ writer("STAN_OPENCL=false");
+#endif
25
#ifdef STAN_NO_RANGE_CHECKS
26
writer("STAN_NO_RANGE_CHECKS=true");
27
0 commit comments