Skip to content

Commit

Permalink
docs: add warning about incompatibility with CUDA versions > 11.3
Browse files Browse the repository at this point in the history
  • Loading branch information
WeisLeDocto committed Feb 29, 2024
1 parent 39aab91 commit 43ebba6
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/source/features.rst
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,11 @@ Real-time image correlation
that it still works as expected ! On the long-term, it should be replaced
by another Block.

.. Warning::
This Block cannot run with CUDA versions greater than 11.3 ! This is due
to a deprecation in pycuda, and is unlikely to be fixed anytime soon in
Crappy or pycuda.

Video-extensometry
++++++++++++++++++

Expand Down Expand Up @@ -201,6 +206,11 @@ Video-extensometry
that it still works as expected ! On the long-term, it should be replaced
by another Block.

.. Warning::
This Block cannot run with CUDA versions greater than 11.3 ! This is due
to a deprecation in pycuda, and is unlikely to be fixed anytime soon in
Crappy or pycuda.

- :ref:`Video Extenso`

Child of the :ref:`Camera` Block that can acquire, record and display images.
Expand Down
5 changes: 5 additions & 0 deletions src/crappy/blocks/gpu_correl.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ class GPUCorrel(Camera):
correlation is performed on the entire image. It is however possible to set
a mask, so that only part of the image is considered when running the
correlation.
Warning:
This Block cannot run with CUDA versions greater than 11.3 ! This is due to
a deprecation in pycuda, and is unlikely to be fixed anytime soon in Crappy
or pycuda.
.. versionadded:: 1.4.0
"""
Expand Down
5 changes: 5 additions & 0 deletions src/crappy/blocks/gpu_ve.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ class GPUVE(Camera):
also performs video-extensometry, but it does so by tracking spots instead
of textured patches, and it is not GPU-accelerated.
Warning:
This Block cannot run with CUDA versions greater than 11.3 ! This is due to
a deprecation in pycuda, and is unlikely to be fixed anytime soon in Crappy
or pycuda.
.. versionadded:: 1.4.0
"""

Expand Down

0 comments on commit 43ebba6

Please sign in to comment.