diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2021-01-30 13:20:59 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2021-01-30 16:19:59 +0000 |
commit | f72ee8e742a171db74ed32b54b85953b8dfe1d77 (patch) | |
tree | 80e015f57b8bfc3c0a0fccb6b0d4ef4d602c0a0d /docs/markdown/Cuda-module.md | |
parent | 4f8cecca9733588b083dba8488143fa1ffb0e495 (diff) | |
download | meson-f72ee8e742a171db74ed32b54b85953b8dfe1d77.zip meson-f72ee8e742a171db74ed32b54b85953b8dfe1d77.tar.gz meson-f72ee8e742a171db74ed32b54b85953b8dfe1d77.tar.bz2 |
Rewrap long text lines in docs. [skip ci]
Diffstat (limited to 'docs/markdown/Cuda-module.md')
-rw-r--r-- | docs/markdown/Cuda-module.md | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/docs/markdown/Cuda-module.md b/docs/markdown/Cuda-module.md index 2f8cb02..24a607a 100644 --- a/docs/markdown/Cuda-module.md +++ b/docs/markdown/Cuda-module.md @@ -62,8 +62,9 @@ Multiple architectures and compute capabilities may be passed in using - Lists of strings - Space (` `), comma (`,`) or semicolon (`;`)-separated strings -The single-word architectural sets `'All'`, `'Common'` or `'Auto'` cannot be -mixed with architecture names or compute capabilities. Their interpretation is: +The single-word architectural sets `'All'`, `'Common'` or `'Auto'` +cannot be mixed with architecture names or compute capabilities. Their +interpretation is: | Name | Compute Capability | |-------------------|--------------------| @@ -162,8 +163,9 @@ This will print Message: Building for architectures sm30 sm35 sm50 compute50 -_Note:_ This function is intended to closely replicate CMake's FindCUDA module function -`CUDA_SELECT_NVCC_ARCH_FLAGS(out_variable, [list of CUDA compute architectures])` +_Note:_ This function is intended to closely replicate CMake's +FindCUDA module function `CUDA_SELECT_NVCC_ARCH_FLAGS(out_variable, +[list of CUDA compute architectures])` @@ -174,11 +176,11 @@ _Since: 0.50.0_ cuda.min_driver_version(cuda_version_string) ``` -Returns the minimum NVIDIA proprietary driver version required, on the host -system, by kernels compiled with a CUDA Toolkit with the given version string. - -The output of this function is generally intended for informative message -printing, but could be used for assertions or to conditionally enable -features known to exist within the minimum NVIDIA driver required. - +Returns the minimum NVIDIA proprietary driver version required, on the +host system, by kernels compiled with a CUDA Toolkit with the given +version string. +The output of this function is generally intended for informative +message printing, but could be used for assertions or to conditionally +enable features known to exist within the minimum NVIDIA driver +required. |