We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
gpu_vec_long
1 parent 67908b4 commit 054ff2aCopy full SHA for 054ff2a
perf/array.jl
@@ -10,6 +10,7 @@ cpu_mat = rand(rng, Float32, m, n)
10
gpu_mat = CuArray{Float32}(cpu_mat)
11
gpu_mat_long = CuArray{Float32}(rand(rng, Float32, m_long, n_long))
12
gpu_vec = reshape(gpu_mat, length(gpu_mat))
13
+gpu_vec_long = reshape(gpu_mat_long, length(gpu_mat_long))
14
gpu_arr_3d = reshape(gpu_mat, (m, 40, 25))
15
gpu_arr_4d = reshape(gpu_mat, (m, 10, 10, 10))
16
gpu_mat_ints = CuArray(rand(rng, -10:10, m, n))
0 commit comments