Skip to content
Snippets Groups Projects
Commit 6767b4a0 authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Add extra `pyopencl` to README.rst/setup.py

parent e40ca9a1
Branches
Tags
No related merge requests found
...@@ -52,6 +52,7 @@ Without `[interactive]` you get a minimal version with very little dependencies. ...@@ -52,6 +52,7 @@ Without `[interactive]` you get a minimal version with very little dependencies.
All options: All options:
- `gpu`: use this if an Nvidia GPU is available and CUDA is installed - `gpu`: use this if an Nvidia GPU is available and CUDA is installed
- `pyopencl`: basic OpenCL support (experimental)
- `alltrafos`: pulls in additional dependencies for loop simplification e.g. libisl - `alltrafos`: pulls in additional dependencies for loop simplification e.g. libisl
- `bench_db`: functionality to store benchmark result in object databases - `bench_db`: functionality to store benchmark result in object databases
- `interactive`: installs dependencies to work in Jupyter including image I/O, plotting etc. - `interactive`: installs dependencies to work in Jupyter including image I/O, plotting etc.
......
...@@ -106,6 +106,7 @@ setup(name='pystencils', ...@@ -106,6 +106,7 @@ setup(name='pystencils',
}, },
extras_require={ extras_require={
'gpu': ['pycuda'], 'gpu': ['pycuda'],
'opencl': ['pyopencl'],
'alltrafos': ['islpy', 'py-cpuinfo'], 'alltrafos': ['islpy', 'py-cpuinfo'],
'bench_db': ['blitzdb', 'pymongo', 'pandas'], 'bench_db': ['blitzdb', 'pymongo', 'pandas'],
'interactive': ['matplotlib', 'ipy_table', 'imageio', 'jupyter', 'pyevtk'], 'interactive': ['matplotlib', 'ipy_table', 'imageio', 'jupyter', 'pyevtk'],
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment