Open paul-buerkner opened 5 years ago
Just wanted to update, for 2.27 there's a few notable things that could make for a good bit faster brms thats related to this issue. I think we can try these once rstan updates to 2.27
https://github.com/stan-dev/stanc3/pull/865 makes it so that data and transformed data is stored as an Eigen::Map<Eigen::Matrix>
. The PR goes over what that means in detail, but the tl;dr is that we should do large data manipulations once in the transformed data block and then we won't need to copy data when calling stan math functions in the model/transformed parameters block. This is only a thing for data and not for parameters
In https://github.com/stan-dev/math/pull/2462 I made a specialization for csr_matrix_time_vector(data, parameters)
, so sparse may become more efficient.
We have fma()
specializations for matrices and vectors now so
// add more terms to the linear predictor
mu += fma(r_1_1[J_1], Z_1_1, r_1_2[J_1] .* Z_1_2);
Should be faster than
for (n in 1:N) {
// add more terms to the linear predictor
mu[n] += r_1_1[J_1[n]] * Z_1_1[n] + r_1_2[J_1[n]] * Z_1_2[n];
}
though we have an optimization in the compiler to take
// add more terms to the linear predictor
mu += r_1_1[J_1] .* Z_1_1 + r_1_2[J_1] .* Z_1_2;
and automajically do the fma thing if it can. It's not exposed yet but should be by 2.28 so might be worth just waiting
That sounds really nice and exciting! Out of interest, did you make some performance benchmarks for actual sparse situation? I wasn't sure if the benchmarks shown in stan-dev/math#2462 are for sparse matrix stuff in particular?
I did not do benchmarking, though I can whip one up this week using brms that should be pretty easy. In my brain I think it should be faster than calling the multi-indexing each time but there will probably be some sort of cost matrix over the size of groups and data I need to think about
These things can be really weird and I personally stopped trusting my intuition, but rely on brute-force benchmarks only.
It would be really nice to leave for loops behind...
With rstan being now more up to date, I put this issue here higher on the agenda.
Currently, the Stan code of a multilevel models looks a little verbose due to first indexing columns and then looping over observations to select the right elements of the computed vectors. This has historically been more efficient that other indexing options available in Stan. However, with the multiple indexing feature of Stan, there should be some much less verbose option available.
Preliminary analysis suggests that this will actually make the sampling less efficient (see branch 're-multiple-indexing') but more testing is required to say something reliable about the efficiency aspect.
Here is how the Stan code of a varying intercept, varying slope model currently looks:
Here is how the Stan code of a varying intercept, varying slope model could look like