From 0f243dba294ea218c7198463ab2bb09b5a75e314 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20H=C3=B6nig?= Date: Wed, 19 Dec 2018 09:23:26 +0100 Subject: [PATCH] Correct CuArrays requirements. According to the CuArrays README, "CuArrays should work out-of-the-box on Julia 1.0." Correct the outdated Julia 0.6 requirement. Also, update the instructions link to point to the CuArrays.jl README, which has setup instructions (CUDAnative.jl's README doesn't). --- docs/src/gpu.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/gpu.md b/docs/src/gpu.md index 6be2d7b0..3556b43b 100644 --- a/docs/src/gpu.md +++ b/docs/src/gpu.md @@ -4,7 +4,7 @@ Support for array operations on other hardware backends, like GPUs, is provided For example, we can use `CuArrays` (with the `cu` converter) to run our [basic example](models/basics.md) on an NVIDIA GPU. -(Note that you need to build Julia 0.6 from source and have CUDA available to use CuArrays – please see the [CUDAnative.jl](https://github.com/JuliaGPU/CUDAnative.jl) instructions for more details.) +(Note that you need to have CUDA available to use CuArrays – please see the [CuArrays.jl (https://github.com/JuliaGPU/CuArrays.jl) instructions for more details.) ```julia using CuArrays