JuliaGPU / JuliaGPU/OpenCL.jl

Intel: Uninitialized SVM memory is not supported

Open
#252 1 comment 0 reactions 0 assignees View on GitHub
Drivers
Dominant language
Julia
Stars
312
Forks
50
Avg merge
1d 1h
Merged PRs (30d)
11

Description

Intel is one of the few platforms that also supports IL execution, however something seems wrong:

```julia
using OpenCL

cl.platform!("intel")

function memset(a, val)
@inbounds a[1] = val
return
end

function main()
a = CLArray{Int}(undef, 1)
@opencl memset(a, 42)
Array(a)
end
```

```julia-repl
julia> main()
1-element Vector{Int64}:
42

julia> main()
1-element Vector{Int64}:
0

julia> main()
1-element Vector{Int64}:
0
```

Not sure yet what the issue is here.

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.