From dbb8508e5732ead3ed83f99d0e59d502435e3c3b Mon Sep 17 00:00:00 2001 From: maleadt Date: Tue, 28 May 2024 08:26:08 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20=20@=207fc6b?= =?UTF-8?q?fcfd7f489c8ff0d17aa2106ecfeb4ab9b75=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- previews/PR44/post/2024-05-28-cuda_5.4/index.html | 2 +- previews/PR44/post/index.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/previews/PR44/post/2024-05-28-cuda_5.4/index.html b/previews/PR44/post/2024-05-28-cuda_5.4/index.html index 6ffc5e8..c38af1c 100644 --- a/previews/PR44/post/2024-05-28-cuda_5.4/index.html +++ b/previews/PR44/post/2024-05-28-cuda_5.4/index.html @@ -260,7 +260,7 @@

If P2P access between devices is not possible, CUDA.jl will now raise an error instead of throwing an illegal memory access error as it did before:

julia> # Use on incompatible device 2
        device!(2)
-CuDevice(5): NVIDIA GeForce GTX 1080 Ti
+CuDevice(2): NVIDIA GeForce GTX 1080 Ti
 julia> a .+ 1
 ERROR: cannot take the GPU address of inaccessible device memory.
 
diff --git a/previews/PR44/post/index.xml b/previews/PR44/post/index.xml
index cb7908f..4ebecc7 100644
--- a/previews/PR44/post/index.xml
+++ b/previews/PR44/post/index.xml
@@ -131,7 +131,7 @@ julia> a .+ 1;

If P2P access between devices is not possible, CUDA.jl will now raise an error instead of throwing an illegal memory access error as it did before:

julia> # Use on incompatible device 2
        device!(2)
-CuDevice(5): NVIDIA GeForce GTX 1080 Ti
+CuDevice(2): NVIDIA GeForce GTX 1080 Ti
 julia> a .+ 1
 ERROR: cannot take the GPU address of inaccessible device memory.You are trying to use memory from GPU 0 on GPU 2.
 P2P access between these devices is not possible;