Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set SPIR-V to 1.2 #582

Merged
merged 4 commits into from
Mar 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 27 additions & 27 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ jobs:
strategy:
fail-fast: false
matrix:
version:
- '1.10'
- '1.11'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
pocl: [jll,]
# version:
# - '1.10'
# - '1.11'
# os:
# - ubuntu-latest
# - macOS-latest
# - windows-latest
# arch:
# - x64
# pocl: [jll,]
include:
- version: '1.10'
os: ubuntu-latest
Expand All @@ -41,23 +41,23 @@ jobs:
os: ubuntu-latest
arch: x64
pocl: local
allow_failure: true
- version: 'nightly'
os: ubuntu-latest
arch: x64
pocl: local
allow_failure: true
- version: 'nightly'
os: ubuntu-latest
arch: x64
pocl: local
allow_failure: true
- version: 'nightly'
os: ubuntu-latest
arch: x64
pocl: jll
allow_failure: true

allow_failure: false
# - version: 'nightly'
# os: ubuntu-latest
# arch: x64
# pocl: local
# allow_failure: true
# - version: 'nightly'
# os: ubuntu-latest
# arch: x64
# pocl: local
# allow_failure: true
# - version: 'nightly'
# os: ubuntu-latest
# arch: x64
# pocl: jll
# allow_failure: true
#
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
Expand Down
2 changes: 1 addition & 1 deletion src/pocl/compiler/compilation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ end
supports_fp64 = "cl_khr_fp64" in dev.extensions

# create GPUCompiler objects
target = SPIRVCompilerTarget(; supports_fp16, supports_fp64, kwargs...)
target = SPIRVCompilerTarget(; supports_fp16, supports_fp64, version = v"1.2", kwargs...)
params = OpenCLCompilerParams()
return CompilerConfig(target, params; kernel, name, always_inline)
end
Expand Down
13 changes: 6 additions & 7 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ end
struct NewBackend <: KernelAbstractions.GPU end
@testset "Default host implementation" begin
backend = NewBackend()
@test KernelAbstractions.isgpu(backend) == true

@test_throws MethodError KernelAbstractions.synchronize(backend)

Expand All @@ -37,9 +36,9 @@ struct NewBackend <: KernelAbstractions.GPU end
end


include("extensions/enzyme.jl")
@static if VERSION >= v"1.7.0"
@testset "Enzyme" begin
enzyme_testsuite(CPU, Array)
end
end
# include("extensions/enzyme.jl")
# @static if VERSION >= v"1.7.0"
# @testset "Enzyme" begin
# enzyme_testsuite(CPU, Array)
# end
# end
Loading