You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we are getting this new deprecation warning. Better to fix it asap, so that we have a stable enough API
DeprecationWarning: jax.linear_util.transformation is deprecated. Use jax.extend.linear_util.transformation instead.
new test problem:
ERROR ../../.tox/py311-test-alldeps-cov/lib/python3.11/site-packages/stingray/modeling/tests/test_gpmodeling.py::TestGPResult::test_sample - jax.errors.UnexpectedTracerError: Encountered an unexpected tracer. A function transformed by JAX had a side effect, allowing for a reference to an intermediate value with type float64[5] wrapped in a DynamicJaxprTracer to escape the scope of the transformation.
JAX transformations require that functions explicitly return their outputs, and disallow saving intermediate values to global state.
The function being traced when the value leaked was sample_U at /home/runner/work/stingray/stingray/.tox/py311-test-alldeps-cov/lib/python3.11/site-packages/jaxns/model.py:47 traced for jit.
The text was updated successfully, but these errors were encountered:
I think the second error is happening in the Nested sampling step (from line 286 to 295 ) of the test_gpmodeling, as the issue says the leak happens in the function sample_U, which is a function used by JAXNs while sampling.
@dhuppenkothen @Gaurav17Joshi
we are getting this new deprecation warning. Better to fix it asap, so that we have a stable enough API
DeprecationWarning: jax.linear_util.transformation is deprecated. Use jax.extend.linear_util.transformation instead.
new test problem:
The text was updated successfully, but these errors were encountered: