blob: 4e90afee98b4f9edef7c4b7e8920f25a0c7f8065 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
CUDA_PTX_COMPILATION
--------------------
.. versionadded:: 3.9
Compile CUDA sources to ``.ptx`` files instead of ``.obj`` files
within :ref:`Object Libraries`.
For example:
.. code-block:: cmake
add_library(myptx OBJECT a.cu b.cu)
set_property(TARGET myptx PROPERTY CUDA_PTX_COMPILATION ON)
|