Skip to content

Commit

Permalink
Add a simple versioninfo function.
Browse files Browse the repository at this point in the history
  • Loading branch information
maleadt committed Sep 9, 2024
1 parent 071a450 commit 88a467d
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 0 deletions.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,28 @@ using Pkg
Pkg.add("OpenCL")
```

3. Test your installation:

```julia-repl
julia> OpenCL.versioninfo()
OpenCL.jl version 0.10.0
Toolchain:
- Julia v1.10.5
- OpenCL_jll v2024.5.8+1
Available platforms: 3
- Portable Computing Language
version: OpenCL 3.0 PoCL 6.0 Linux, Release, RELOC, SPIR-V, LLVM 15.0.7jl, SLEEF, DISTRO, POCL_DEBUG
· cpu-haswell-AMD Ryzen 9 5950X 16-Core Processor (fp64, il)
- NVIDIA CUDA
version: OpenCL 3.0 CUDA 12.6.65
· NVIDIA RTX 6000 Ada Generation (fp64)
- Intel(R) OpenCL Graphics
version: OpenCL 3.0
· Intel(R) Arc(TM) A770 Graphics (fp16, il)
```


## Basic example: vector add

Expand Down
46 changes: 46 additions & 0 deletions src/util.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,49 @@ function get_kernel(program_file::String, kernel_name::String; vars...)
return kernel
end
end

function versioninfo(io::IO=stdout)
println(io, "OpenCL.jl version $(pkgversion(@__MODULE__))")
println(io)

println(io, "Toolchain:")
println(io, " - Julia v$(VERSION)")
for pkg in [cl.OpenCL_jll]
println(io, " - $(string(pkg)) v$(pkgversion(pkg))")
end
println(io)

env = filter(var->startswith(var, "JULIA_OPENCL"), keys(ENV))
if !isempty(env)
println(io, "Environment:")
for var in env
println(io, "- $var: $(ENV[var])")
end
println(io)
end

println(io, "Available platforms: ", length(cl.platforms()))
for platform in cl.platforms()
println(io, " - $(platform.name)")
println(io, " version: $(platform.version)")
for device in cl.devices(platform)
print(io, " · $(device.name)")

## list some relevant extensions
extensions = []
if in("cl_khr_fp16", device.extensions)
push!(extensions, "fp16")
end
if in("cl_khr_fp64", device.extensions)
push!(extensions, "fp64")
end
if in("cl_khr_il_program", device.extensions)
push!(extensions, "il")
end
if !isempty(extensions)
print(io, " (", join(extensions, ", "), ")")
end
println(io)
end
end
end
2 changes: 2 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ using Test
using OpenCL
using pocl_jll

@info "System information:\n" * sprint(io->OpenCL.versioninfo(io))

@testset "OpenCL.jl" begin

@testset "$(platform.name): $(device.name)" for platform in cl.platforms(),
Expand Down

0 comments on commit 88a467d

Please sign in to comment.