Skip to content
This repository was archived by the owner on May 27, 2021. It is now read-only.

Commit 95fbf93

Browse files
committed
Don't put the world age in the kernel cache key.
1 parent 88d7ef9 commit 95fbf93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/execution.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,10 +252,10 @@ when function changes, or when different types or keyword arguments are provided
252252
age = method_age(f, $t)
253253
agecache[key] = age
254254
end
255-
key = hash(age, key)
256255

257256
# compile the function
258257
ctx = CuCurrentContext()
258+
key = hash(age, $precomp_key)
259259
key = hash(ctx, key)
260260
key = hash(kwargs, key)
261261
for nf in 1:nfields(f)

0 commit comments

Comments
 (0)