Paul T. Bauman

Results 95 issues of Paul T. Bauman

Some folks over at mfem/mfem#2910 are trying to run with HYPRE on a Navi gaming card. The issue is that the Navi cards run with warp/wavefront size 32 and not...

Given all the warnings that popped out during the investigation of #582, I think we should consider mimic'ing the libMesh style of `CXXFLAGS`. Namely, `dbg`, `devel`, and `opt`. And, as...

This follows up on #528 to allow the marginalization of a "marginal parameter space". That is, if instead of your model looking like f(m), it looks like f(m,q) and you...

do not merge

As discussed in #526, it would be nice to be able to do importance sampling in the `MonteCarloQuadrature`. We can add either another constructor, or an optional pointer argument to...

As I'm working on using/updating/testing the quadrature class, this is driving me crazy. Currently the constructors take the "order" which, AFAICT, is just n_points-1, which I don't understand. That "order"...

There was a behavior change after the 0.56.1 release. Looks like it happened in #471. In particular, we need to make that the user knows to `#include ` and to...

@dmcdougall lost some time today reinventing the wheel to do this and really that's all the linear interpolation surrogate builder was doing is a parameter sweep. And it makes sense...

It would be nice to be able to just supply the data file and have those points reused when running a new surrogate. Uniform refinement is the obvious case, but...

enhancement

A natural (I think) follow-on to #351 is to subclass the more specialized likelihoods, e.g. `GaussianLikelihoodScalarCovariance` and have them take a pointer to a `SurrogateBase`. Then, we can implement the...

After seeing #212 reported, we should remove all direct calls to static_cast and dynamic_cast and wrap them up in a macro so that dynamic_cast is done in debug mode (to...

enhancement