aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Cuda-module.md
diff options
context:
space:
mode:
authorOlexa Bilaniuk <obilaniu@gmail.com>2019-02-24 09:24:50 -0500
committerOlexa Bilaniuk <obilaniu@gmail.com>2019-02-24 11:01:05 -0500
commit104397a4293f78d3cbdd84f380cefb84ca54ec99 (patch)
treedd69e0aa8c95e7bfe9db1ac6d0d6c60d73a7938f /docs/markdown/Cuda-module.md
parent6d15594d441723f0f575c0b9e67f35c4b46a6120 (diff)
downloadmeson-104397a4293f78d3cbdd84f380cefb84ca54ec99.zip
meson-104397a4293f78d3cbdd84f380cefb84ca54ec99.tar.gz
meson-104397a4293f78d3cbdd84f380cefb84ca54ec99.tar.bz2
[skip ci] Update the CUDA module documentation.
Diffstat (limited to 'docs/markdown/Cuda-module.md')
-rw-r--r--docs/markdown/Cuda-module.md10
1 files changed, 9 insertions, 1 deletions
diff --git a/docs/markdown/Cuda-module.md b/docs/markdown/Cuda-module.md
index caa1756..f161eac 100644
--- a/docs/markdown/Cuda-module.md
+++ b/docs/markdown/Cuda-module.md
@@ -71,6 +71,14 @@ mixed with architecture names or compute capabilities. Their interpretation is:
| `'Common'` | Relatively common CCs supported by given NVCC compiler. Generally excludes Tegra and Tesla devices. |
| `'Auto'` | The CCs provided by the `detected:` keyword, filtered for support by given NVCC compiler. |
+As a special case, when `nvcc_arch_flags()` is invoked with
+
+- an NVCC `compiler` object `nvcc`,
+- `'Auto'` mode and
+- no `detected:` keyword,
+
+Meson uses `nvcc`'s architecture auto-detection results.
+
The supported architecture names and their corresponding compute capabilities
are:
@@ -85,7 +93,7 @@ are:
| `'Pascal'` | 6.0, 6.1 |
| `'Pascal+Tegra'` | 6.2 |
| `'Volta'` | 7.0 |
-| `'Volta+Tegra'` | 7.2 |
+| `'Xavier'` | 7.2 |
| `'Turing'` | 7.5 |