We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea0ad5c commit 5a08b8dCopy full SHA for 5a08b8d
1 file changed
test/base/texture.jl
@@ -110,6 +110,9 @@ end
110
texarr3D_2 = CuTextureArray(texarr3D)
111
tex3D_2 = CuTexture(texarr3D_2)
112
@test Array(fetch_all(tex3D_2)) == a3D
113
+ texarr3D_3 = CuTextureArray{Float32, 3}(texarr3D)
114
+ tex3D_3 = CuTexture(texarr3D_3)
115
+ @test Array(fetch_all(tex3D_3)) == a3D
116
@test sizeof(texarr3D) == sizeof(a3D)
117
@test eltype(texarr3D) == Float32
118
end
0 commit comments