LLNL / MuyGPyS

A fast, pure python implementation of the MuyGPs Gaussian process realization and training algorithm.
Other
25 stars 11 forks source link

`MuyGPyS.examples.muygps_torch` needs to be rewritten to obscure all references to `MuyGPyS._src` #103

Closed bwpriest closed 1 year ago

bwpriest commented 1 year ago

These are meant to be read as tutorials more than actually used, so we should not be using raw impl functions like _muygps_posterior_variance(). Until we fix iss #96, we'll need to enforce that torch is in 32-bit mode if we use import MuyGPyS._src.math.torch as torch. I think that is the default, so it might be safe to just import torch instead? This might need a little fiddling.

alecmdunton commented 1 year ago

Starting this now.

alecmdunton commented 1 year ago

This was addressed in PR #144