minor update for gpu.md code block

This commit is contained in:
Iblis Lin 2018-03-19 20:03:31 +08:00 committed by GitHub
parent 1c5f8e3534
commit 07ed439005
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ Tracked 5-element CuArray{Float32,1}:
The analogue `cpu` is also available for moving models and data back off of the GPU.
```
```julia
julia> x = rand(10) |> gpu
10-element CuArray{Float32,1}:
0.235164
@ -67,4 +67,4 @@ julia> x |> cpu
0.235164
0.192538
```
```