Brian Ward
Brian Ward
#### Summary: Following #1176 and with the addition of Pathfinder, a lot of the primary usages of cmdstan models are able to use threading, but only if `STAN_THREADS` is True....
We don't do any testing up at this level that `STAN_OPENCL` produces compile-able code. See https://github.com/stan-dev/cmdstan/pull/1141#pullrequestreview-1285356182
#### Submission Checklist - [x] Run unit tests - [x] Declare copyright holder and open-source license: see below #### Summary Closes #738 by adding a keyword argument `num_threads`. This checks...
#### Submission Checklist - [x] Run unit tests - [x] Declare copyright holder and open-source license: see below #### Summary Closes #739 by providing a function outside the model class...
#### Submission Checklist - [x] Run unit tests - [x] Declare copyright holder and open-source license: see below #### Summary This PR moves all of the metadata for the package...
#### Submission Checklist - [x] Run unit tests - [x] Declare copyright holder and open-source license: see below #### Summary Numpy is planning a version 2.0 in December: https://github.com/numpy/numpy/issues/24300 This...
#### Summary: ```python >>> stan_file = os.path.join(cmdstan_path(), 'examples', 'bernoulli', 'bernoulli.stan') >>> model = CmdStanModel(stan_file=stan_file, force_compile=True, cpp_options={"CXXFLAGS":"-march=native"}) ``` #### Description: We invoke this like `make CXXFLAGS=-march=native bernoulli`, but it seems the...
#### Summary: Added in https://github.com/stan-dev/cmdstan/pull/1204, `save_cmdstan_config` outputs the arguments provided to cmdstan as a JSON file. This should remove most of the need to parse the CSV comments, besides perhaps...
#### Summary: As discussed in #689. The current behavior when `exe_file=None, compile=False` yields a broken object - essentially all methods other than `compile()` cannot be called until after `compile()` is...
#### Summary: It would be nice to remove a lot of legacy code in the package which has been made obsolete by recent CmdStan updates. For example, supporting running multiple...