I tried writing a model with map_rect and I’m getting an error at C++ compile. This is using the develop version of cmdstan.
The model is this (modified from a brms model):
functions {
vector binomialf(vector phi, vector theta, data real[] x_r, data int[] x_i) {
vector[1] lpmf;
lpmf[1] = binomial_logit_lpmf(x_i[1:(size(x_i) / 2)] | x_i[(size(x_i) / 2 + 1):size(x_i)], phi);
return lpmf;
}
}
...
transformed data {
...
int x_i[2, N];
real x_r[2, 0];
...
}
...
model {
vector[N / 2] mu[2];
...
// likelihood including all constants
if (!prior_only) {
vector[0] t;
vector[2] tmp = map_rect(binomialf, t, mu, x_r, x_i);
target += sum(tmp);
}
}
It compiles from Stan to C++ but then I get errors on the C++ compile. Am I messing something up?
--- Compiling, linking C++ code ---
g++ -DSTAN_THREADS -std=c++1y -pthread -D_REENTRANT -Wno-sign-compare -I stan/lib/stan_math/lib/tbb_2019_U8/include -O3 -I src -I stan/src -I lib/rapidjson_1.1.0/ -I stan/lib/stan_math/ -I stan/lib/stan_math/lib/eigen_3.3.3 -I stan/lib/stan_math/lib/boost_1.69.0 -I stan/lib/stan_math/lib/sundials_4.1.0/include -DBOOST_DISABLE_ASSERTS -c -x c++ -o state.o state.hpp
state.hpp: In constructor ‘state_model_namespace::state_model::state_model(stan::io::var_context&, unsigned int, std::ostream*)’:
state.hpp:938:50: warning: overflow in implicit constant conversion [-Woverflow]
Kc = std::numeric_limits<double>::quiet_NaN();
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~
state.hpp: In instantiation of ‘T__ state_model_namespace::state_model::log_prob(std::vector<T_l>&, std::vector<int>&, std::ostream*) const [with bool propto__ = false; bool jacobian__ = false; T__ = double; std::ostream = std::basic_ostream<char>]’:
stan/src/stan/model/model_base_crtp.hpp:147:29: required from ‘double stan::model::model_base_crtp<M>::log_prob(std::vector<double>&, std::vector<int>&, std::ostream*) const [with M = state_model_namespace::state_model; std::ostream = std::basic_ostream<char>]’
state.hpp:4552:1: required from here
state.hpp:1799:51: warning: overflow in implicit constant conversion [-Woverflow]
i = std::numeric_limits<double>::quiet_NaN();
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~
state.hpp:2017:49: error: no matching function for call to ‘map_rect(state_model_namespace::binomialf_functor__, Eigen::Matrix<double, -1, 1>&, std::vector<Eigen::Matrix<double, -1, 1> >&, const std::vector<std::vector<double> >&, const std::vector<std::vector<int> >&, std::ostream*&)’
assign(tmp, nil_index_list(), map_rect(binomialf_functor__(
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
), t, mu, x_r, x_i,
~~~~~~~~~~~~~~~~~~~
pstream__), "assigning variable tmp");
~~~~~~~~~~
In file included from stan/lib/stan_math/stan/math/prim/mat.hpp:263:0,
from stan/lib/stan_math/stan/math/rev/mat.hpp:12,
from stan/lib/stan_math/stan/math.hpp:4,
from stan/src/stan/model/model_header.hpp:4,
from state.hpp:3:
stan/lib/stan_math/stan/math/prim/mat/functor/map_rect.hpp:123:1: note: candidate: template<int call_id, class F, class T_shared_param, class T_job_param> Eigen::Matrix<typename stan::return_type<T1, T2>::type, -1, 1> stan::math::map_rect(const Eigen::Matrix<T_shared_param, -1, 1>&, const std::vector<Eigen::Matrix<T_job_param, -1, 1> >&, const std::vector<std::vector<double> >&, const std::vector<std::vector<int> >&, std::ostream*)
map_rect(const Eigen::Matrix<T_shared_param, Eigen::Dynamic, 1>& shared_params,
^~~~~~~~
stan/lib/stan_math/stan/math/prim/mat/functor/map_rect.hpp:123:1: note: template argument deduction/substitution failed:
state.hpp:2017:49: note: ‘state_model_namespace::binomialf_functor__’ is not derived from ‘const Eigen::Matrix<T_shared_param, -1, 1>’
assign(tmp, nil_index_list(), map_rect(binomialf_functor__(
~~~~~~~~^~~~~~~~~~~~~~~~~~~~~
), t, mu, x_r, x_i,
~~~~~~~~~~~~~~~~~~~
pstream__), "assigning variable tmp");
~~~~~~~~~~
state.hpp: In instantiation of ‘T__ state_model_namespace::state_model::log_prob(std::vector<T_l>&, std::vector<int>&, std::ostream*) const [with bool propto__ = false; bool jacobian__ = false; T__ = stan::math::var; std::ostream = std::basic_ostream<char>]’: