bgoodri

Results 256 comments of bgoodri

Most likely you ran out of RAM. On Linux, it is fairly straightforward to temporarily add -flto to CXX14FLAGS in the ~/.R/Makevars file, which may help with the RAM spike.

When you run low on RAM, the system will grind to a halt and even if it is progressing, it may or may not be able to get additional output...

The r-cran-stan binary package can be installed from a Ubuntu repository with almost no RAM. However, then installing ctsem or any other Stan-related package that is not in the Ubuntu...

I don't have time at the moment due to final exams going on. I know there was a reason I used LOCAL_LIBS rather than PKG_LIBS on Windows at one point,...

For Ubuntu 20.04.1 LTS, I don't think you need to add any repositories: https://packages.ubuntu.com/search?suite=default&section=all&arch=any&keywords=r-cran-rstan&searchon=names On Sun, Dec 13, 2020 at 12:58 PM Jonah Gabry wrote: > Hi @joacorapela sorry you're...

@akucukelbir or @dustinvtran Do you have access to a Windows machine to reproduce this? Change weibull.txt to weibull.stan and weibull.data.txt to weibull.data.R .

The backtrace is related to the streaming ``` #2 0x00514a70 in std::ostreambuf_iterator std::num_put::_M_insert_float(std::ostreambuf_iterator, std::ios_base&, char, char, double) const () ```

Sadly, that's all it says. But I think it means that it tried to print some segfault inducing output to the screen rather than the variational approximation process terminated unexpectedly....

What Bob said. I'm continuing to guess that it tried to stream a double that was too big. If that is correct, could we use scientific notation or something for...

We do have a Windows machine. You might be able to write a unit test that just streams a million random characters in the same way that ADVI does. On...