diff options
author | Olexa Bilaniuk <obilaniu@gmail.com> | 2019-02-24 09:24:50 -0500 |
---|---|---|
committer | Olexa Bilaniuk <obilaniu@gmail.com> | 2019-02-24 11:01:05 -0500 |
commit | 104397a4293f78d3cbdd84f380cefb84ca54ec99 (patch) | |
tree | dd69e0aa8c95e7bfe9db1ac6d0d6c60d73a7938f /docs/markdown | |
parent | 6d15594d441723f0f575c0b9e67f35c4b46a6120 (diff) | |
download | meson-104397a4293f78d3cbdd84f380cefb84ca54ec99.zip meson-104397a4293f78d3cbdd84f380cefb84ca54ec99.tar.gz meson-104397a4293f78d3cbdd84f380cefb84ca54ec99.tar.bz2 |
[skip ci] Update the CUDA module documentation.
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Cuda-module.md | 10 |
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 | |