Skip to content

Commit fa12be0

Browse files
committed
Adapt to GPUCompiler changes.
1 parent 9f43ac0 commit fa12be0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Manifest.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
julia_version = "1.8.5"
44
manifest_format = "2.0"
5-
project_hash = "668ed29932abfaac250cb6c23a1bfa769a4b4fcf"
5+
project_hash = "bd7ca8996e1ea58c0718ac9f8390b825e95848f9"
66

77
[[deps.AbstractFFTs]]
88
deps = ["ChainRulesCore", "LinearAlgebra", "Test"]
@@ -158,9 +158,9 @@ version = "0.1.5"
158158

159159
[[deps.GPUCompiler]]
160160
deps = ["ExprTools", "InteractiveUtils", "LLVM", "Libdl", "Logging", "Scratch", "TimerOutputs", "UUIDs"]
161-
git-tree-sha1 = "8573c39f9c4e99720ab5ea44104efb3ed07a58b0"
161+
git-tree-sha1 = "4eb8cd377288c16cd9bd6c039d2641e6b3e1d91e"
162162
uuid = "61eb1bfa-7361-4325-ad38-22787b887f55"
163-
version = "0.23.0"
163+
version = "0.24.0"
164164

165165
[[deps.InlineStrings]]
166166
deps = ["Parsers"]

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Crayons = "4"
5252
DataFrames = "1"
5353
ExprTools = "0.1"
5454
GPUArrays = "9"
55-
GPUCompiler = "0.23"
55+
GPUCompiler = "0.24"
5656
KernelAbstractions = "0.9.2"
5757
LLVM = "6"
5858
NVTX = "0.3.2"

test/core/execution.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ end
8888
# make sure invalid kernels can be partially reflected upon
8989
let
9090
invalid_kernel() = throw()
91-
@test_throws CUDA.KernelError @cuda invalid_kernel()
92-
@test_throws CUDA.KernelError @grab_output @device_code_warntype @cuda invalid_kernel()
91+
@test_throws CUDA.InvalidIRError @cuda invalid_kernel()
92+
@test_throws CUDA.InvalidIRError @grab_output @device_code_warntype @cuda invalid_kernel()
9393
out, err = @grab_output begin
9494
try
9595
@device_code_warntype @cuda invalid_kernel()

0 commit comments

Comments
 (0)