https://github.com/tillahoffmann/precompiled-cmdstan
Precompiled cmdstan for use in Read the Docs and elsewhere.
https://github.com/tillahoffmann/precompiled-cmdstan
mc-stan readthedocs
Last synced: 4 months ago
JSON representation
Precompiled cmdstan for use in Read the Docs and elsewhere.
- Host: GitHub
- URL: https://github.com/tillahoffmann/precompiled-cmdstan
- Owner: tillahoffmann
- License: bsd-3-clause
- Created: 2023-01-02T21:24:58.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-15T13:20:04.000Z (9 months ago)
- Last Synced: 2025-01-14T03:49:38.273Z (6 months ago)
- Topics: mc-stan, readthedocs
- Homepage:
- Size: 10.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Precompiled [`cmdstan`](https://github.com/stan-dev/cmdstan) [](https://github.com/tillahoffmann/precompiled-cmdstan/actions/workflows/main.yml)
The GitHub action of this repository compiles several versions of [`cmdstan`](https://github.com/stan-dev/cmdstan) on different operating systems and publishes them as [GitHub releases](https://github.com/tillahoffmann/precompiled-cmdstan/releases). The precompiled versions can be used to slash CI times or build documentation on [readthedocs.org](https://readthedocs.org).
## Example
```bash
# Download the release and unpack it for use with `cmdstanpy`.
curl -L -o cmdstan.tar.gz https://github.com/tillahoffmann/precompiled-cmdstan/releases/download/cmdstan-ubuntu-20.04-2.31.0/cmdstan-ubuntu-20.04-2.31.0.tar.gz
mkdir -p ~/.cmdstan
tar -xf cmdstan.tar.gz -C ~/.cmdstan
```A concrete example is available [here](https://github.com/tillahoffmann/gptools/blob/main/.readthedocs.yaml) as part of the [`gptools-stan`](https://gptools-stan.readthedocs.io/en/latest/README.html) package for performant Gaussian processes in [Stan](https://mc-stan.org).