From b2cd076e2e80746b2d3113d0c5c76e6f350a6261 Mon Sep 17 00:00:00 2001 From: Raman Kumar <64368013+raman-maker@users.noreply.github.com> Date: Wed, 5 Nov 2025 22:15:42 +0100 Subject: [PATCH] write `CuArray` for clarity added `CuArray` for easy understanding. --- docs/src/tutorials/introduction.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/tutorials/introduction.jl b/docs/src/tutorials/introduction.jl index 4ae15f6805..9628a75213 100644 --- a/docs/src/tutorials/introduction.jl +++ b/docs/src/tutorials/introduction.jl @@ -170,7 +170,7 @@ end # ### Writing your first GPU kernel -# Using the high-level GPU array functionality made it easy to perform this computation +# Using the high-level GPU array functionality `CuArray` made it easy to perform this computation # on the GPU. However, we didn't learn about what's going on under the hood, and that's the # main goal of this tutorial. So let's implement the same functionality with a GPU kernel: