Skip to content

Commit 76fe484

Browse files
committed
rm CUDA page
1 parent 1920416 commit 76fe484

File tree

3 files changed

+26
-39
lines changed

3 files changed

+26
-39
lines changed

docs/make.jl

-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ makedocs(
4040
"MLUtils.jl (`DataLoader`, ...)" => "data/mlutils.md",
4141
"Functors.jl (`fmap`, ...)" => "models/functors.md",
4242
"OneHotArrays.jl (`onehot`, ...)" => "data/onehot.md",
43-
"CUDA.jl (`cu`, `CuIterator`, ...)" => "reference/CUDA.md", # do we want this?
4443
],
4544
"Tutorials" => [
4645
# These walk you through various tasks. It's fine if they overlap quite a lot.

docs/src/gpu.md

+26
Original file line numberDiff line numberDiff line change
@@ -182,3 +182,29 @@ $ export CUDA_VISIBLE_DEVICES='0,1'
182182

183183

184184
More information for conditional use of GPUs in CUDA.jl can be found in its [documentation](https://cuda.juliagpu.org/stable/installation/conditional/#Conditional-use), and information about the specific use of the variable is described in the [Nvidia CUDA blog post](https://developer.nvidia.com/blog/cuda-pro-tip-control-gpu-visibility-cuda_visible_devices/).
185+
186+
187+
## CUDA Reference
188+
189+
Arrays and iterators:
190+
191+
```@docs
192+
CUDA.cu
193+
CUDA.CuIterator
194+
```
195+
196+
Device settings:
197+
198+
```@docs
199+
CUDA.allowscalar
200+
CUDA.functional
201+
CUDA.device
202+
CUDA.device!
203+
```
204+
205+
For benchmarking:
206+
207+
```@docs
208+
CUDA.@time
209+
CUDA.@sync
210+
```

docs/src/reference/CUDA.md

-38
This file was deleted.

0 commit comments

Comments
 (0)