James Usevitch
James Usevitch
I came across this issue as well. Rational number types are written with double forward slashes in the generated C code (e.g. `1//2`). This comments out the remainder of the...
Good question. I tried ensuring that all matrix/vector datatypes are floats, but I still got the same error. Here's the code for another simple sanity check that I tried (on...
@Transurgeon Interesting...I tried the example on a separate computer (also running Ubuntu 22.04) and am getting the error again. Strange that it's not showing up on Mac. The full output...
I tried again in a separate Mamba environment with python 3.12, and the MWE ran without any problems. I tried with Python 3.10, and the segfault appeared again (output is...
I'm interested in this feature as well. This would simplify a number of common robotic / control theoretic scenarios. To give a concrete example of where this would be useful,...
To add to the minimum example shown above, it would be useful to have an interface for passing the auxiliary state to the vector field call of the dynamical system....
@patrick-kidger thanks for these thoughts. I agree that streamlining this method would be useful. I'm also happy to help contribute or test out a potential solution. After some more thought,...
It would be nice if the times at which auxiliary state(s) are saved could be specified by `SaveAt`, similar to how the ODE state is saved. Currently the [docs state](https://docs.kidger.site/diffrax/api/saveat/)...
@jbial Thanks for passing along that MWE. I think there are two fundamental issues here that are preventing the saving of `aux_state` using the current `SaveAt` interface: * The function...
> It wouldn't be defined to ask for the state at times not aligned with the step locations! @patrick-kidger Fair point--I apologize for the lack of clarity. To be more...