An error occurred while fetching the assigned milestone of the selected merge_request.
Add pystencils-autodiff
1 unresolved thread
1 unresolved thread
This adds pystencils_autodiff (https://pypi.org/project/pystencils-autodiff/0.1.3/) to pystencils.
After installing the extension, you can access all its classes in the submodule pystenicls.autodiff
.
If it's not installed but you try to import it you get an error with installation instructions.
The internal code of pystencils_autodiff is still very ugly. I hope I can clean it up in the next days/weeks.
Edited by Stephan Seitz
Merge request reports
Activity
Filter activity
- pystencils/autodiff.py 0 → 100644
1 """ 2 Provides tools for generation of auto-differentiable operations. 3 4 See https://github.com/theHamsta/pystencils_autodiff 5 6 Installation: 7 8 .. code-block:: bash 9 pip install pyconrad-autodiff 10 """ 11 import os 12 13 if 'CI' not in os.environ: 14 raise NotImplementedError('pystencils-autodiff is not installed. Run `pip install pyconrad-autodiff`') changed this line in version 2 of the diff
added 2 commits