Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pystencils
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Markus Holzer
pystencils
Commits
51b1a38a
Commit
51b1a38a
authored
3 years ago
by
Markus Holzer
Browse files
Options
Downloads
Patches
Plain Diff
Remove autodiff
parent
5e966ab2
No related branches found
No related tags found
No related merge requests found
Pipeline
#35918
canceled
3 years ago
Stage: pretest
Stage: test
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
README.md
+0
-1
0 additions, 1 deletion
README.md
pystencils/__init__.py
+0
-7
0 additions, 7 deletions
pystencils/__init__.py
pystencils/autodiff.py
+0
-12
0 additions, 12 deletions
pystencils/autodiff.py
setup.py
+0
-1
0 additions, 1 deletion
setup.py
with
0 additions
and
21 deletions
README.md
+
0
−
1
View file @
51b1a38a
...
...
@@ -56,7 +56,6 @@ All options:
-
`alltrafos`
: pulls in additional dependencies for loop simplification e.g. libisl
-
`bench_db`
: functionality to store benchmark result in object databases
-
`interactive`
: installs dependencies to work in Jupyter including image I/O, plotting etc.
-
`autodiff`
: enable derivation of adjoint kernels and generation of Torch/Tensorflow operations
-
`doc`
: packages to build documentation
Options can be combined e.g.
...
...
This diff is collapsed.
Click to expand it.
pystencils/__init__.py
+
0
−
7
View file @
51b1a38a
...
...
@@ -15,13 +15,6 @@ from .slicing import make_slice
from
.spatial_coordinates
import
x_
,
x_staggered
,
x_staggered_vector
,
x_vector
,
y_
,
y_staggered
,
z_
,
z_staggered
from
.sympyextensions
import
SymbolCreator
try
:
import
pystencils_autodiff
autodiff
=
pystencils_autodiff
except
ImportError
:
pass
__all__
=
[
'
Field
'
,
'
FieldType
'
,
'
fields
'
,
'
TypedSymbol
'
,
'
make_slice
'
,
...
...
This diff is collapsed.
Click to expand it.
pystencils/autodiff.py
deleted
100644 → 0
+
0
−
12
View file @
5e966ab2
"""
Provides tools for generation of auto-differentiable operations.
See https://github.com/theHamsta/pystencils_autodiff
Installation:
.. code-block:: bash
pip install pystencils-autodiff
"""
raise
NotImplementedError
(
'
pystencils-autodiff is not installed. Run `pip install pystencils-autodiff`
'
)
This diff is collapsed.
Click to expand it.
setup.py
+
0
−
1
View file @
51b1a38a
...
...
@@ -117,7 +117,6 @@ setuptools.setup(name='pystencils',
'
alltrafos
'
:
[
'
islpy
'
,
'
py-cpuinfo
'
],
'
bench_db
'
:
[
'
blitzdb
'
,
'
pymongo
'
,
'
pandas
'
],
'
interactive
'
:
[
'
matplotlib
'
,
'
ipy_table
'
,
'
imageio
'
,
'
jupyter
'
,
'
pyevtk
'
,
'
rich
'
,
'
graphviz
'
],
'
autodiff
'
:
[
'
pystencils-autodiff
'
],
'
doc
'
:
[
'
sphinx
'
,
'
sphinx_rtd_theme
'
,
'
nbsphinx
'
,
'
sphinxcontrib-bibtex
'
,
'
sphinx_autodoc_typehints
'
,
'
pandoc
'
],
'
use_cython
'
:
[
'
Cython
'
]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment