seantalts
seantalts
If use go test on all of your packages at once and there are multiple test suites, the suites will end up running in parallel with other suites.
The Stan performance test (in `src/test/performance`) only works on gelman-group-mac, the Mac Pro in the office. Among other things, this means Stan and Math jobs all block waiting on that...
I'm using Dune with this project: https://github.com/stan-dev/stanc3. Dune will build a bytecode or executable file in _build/default/. Here's my launch config: ``` { "version": "0.2.0", "configurations": [ { "name": "OCaml",...
It would be really useful to be able to run these models programmatically as part of a regression and performance test suite, but for that we need to get the...
See https://discourse.mc-stan.org/t/interface-roadmap-last-draft-before-ratification-vote/10955/8?u=seantalts
Right now map_rect asks the compiler to emit a call_id integer as a template parameter to basically allow some caching to happen in the Math library. As we did with...
https://github.com/stan-dev/stanc3/blob/8c999a5cda170c3573a9902fe7954b842d9a6540/src/middle/Program.ml#L117-L129
We talked a bunch about SList in the meeting the other day and decided to keep it in for now as a lot of optimization code relies on it, but...
This issue is meant to track the various language server APIs we think are most important and want to expose via the stanc3 compiler. We'll write out the API specs...
We might be able to create a simple MIR interpreter that mocks out StanLib function applications and just does something silly, like returning a hash of all of the inputs...