]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/ale/doc/ale-cuda.txt

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Merge commit '76265755a1add77121c8f9dabb3e9bb70fe9a972' as '.vim/bundle/ale'
[etc/vim.git] / .vim / bundle / ale / doc / ale-cuda.txt
1 ===============================================================================
2 ALE CUDA Integration                                         *ale-cuda-options*
3
4
5 ===============================================================================
6 clang-format                                              *ale-cuda-clangformat*
7
8 See |ale-c-clangformat| for information about the available options.
9 Note that the C options are also used for CUDA.
10
11
12 ===============================================================================
13 clangd                                                        *ale-cuda-clangd*
14
15                                            *ale-options.cuda_clangd_executable*
16                                                  *g:ale_cuda_clangd_executable*
17                                                  *b:ale_cuda_clangd_executable*
18 cuda_clangd_executable
19 g:ale_cuda_clangd_executable
20   Type: |String|
21   Default: `'clangd'`
22
23   This variable can be changed to use a different executable for clangd.
24
25                                               *ale-options.cuda_clangd_options*
26                                                     *g:ale_cuda_clangd_options*
27                                                     *b:ale_cuda_clangd_options*
28 cuda_clangd_options
29 g:ale_cuda_clangd_options
30   Type: |String|
31   Default: `''`
32
33   This variable can be changed to modify flags given to clangd.
34
35
36 ===============================================================================
37 nvcc                                                            *ale-cuda-nvcc*
38
39                                              *ale-options.cuda_nvcc_executable*
40                                                    *g:ale_cuda_nvcc_executable*
41                                                    *b:ale_cuda_nvcc_executable*
42 cuda_nvcc_executable
43 g:ale_cuda_nvcc_executable
44   Type: |String|
45   Default: `'nvcc'`
46
47   This variable can be changed to use a different executable for nvcc.
48   Currently only nvcc 8.0 is supported.
49
50                                                 *ale-options.cuda_nvcc_options*
51                                                       *g:ale_cuda_nvcc_options*
52                                                       *b:ale_cuda_nvcc_options*
53 cuda_nvcc_options
54 g:ale_cuda_nvcc_options
55   Type: |String|
56   Default: `'-std=c++11'`
57
58   This variable can be changed to modify flags given to nvcc.
59
60
61 ===============================================================================
62   vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: