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.
1 parent 7c4881d commit 9278295Copy full SHA for 9278295
src/array.jl
@@ -32,7 +32,7 @@ function check_eltype(T)
32
Base.allocatedinline(T) || error("CLArray only supports element types that are stored inline")
33
Base.isbitsunion(T) && error("CLArray does not yet support isbits-union arrays")
34
!("cl_khr_fp16" in cl.device().extensions) && contains_eltype(T, Float16) && error("Float16 is not supported on this device")
35
- return !("cl_khr_fp64" in cl.device().extensions) && contains_eltype(T, Float64) && error("Float16 is not supported on this device")
+ return !("cl_khr_fp64" in cl.device().extensions) && contains_eltype(T, Float64) && error("Float64 is not supported on this device")
36
end
37
38
mutable struct CLArray{T, N, M} <: AbstractGPUArray{T, N}
0 commit comments