-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migration to Autoray Backend #3
base: master
Are you sure you want to change the base?
Conversation
(rk and symplectic) TODO: * Get dense output working * Get event detection working * Get implicit integrators working * Get Richardson Extrapolator integrator working
…ients to be reintroduced through vjp/jvp transformations as appropriate
…subset of integrators for certain tests
b4e4e20
to
1483a3e
Compare
Codecov ReportAttention: Patch coverage is
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #3 +/- ##
==========================================
+ Coverage 83.37% 88.26% +4.89%
==========================================
Files 33 22 -11
Lines 4973 2198 -2775
Branches 541 314 -227
==========================================
- Hits 4146 1940 -2206
+ Misses 717 172 -545
+ Partials 110 86 -24
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
…issues with np.longdouble
Unlike the current implementation where the backend is fixed at startup and restricts the user to specific float formats and runtime backends, this PR implements the
autoray
backend for a more flexible runtime where the given arrays determine the data format and the backend.As a result, this should enable integration of other backends such as
jax
and other array libraries which support anumpy
-like interface.