Skip to content

Commit 3b05baf

Browse files
authored
Enzyme: Adapt to pending version breaking update (#2490)
[only downstream]
1 parent 4e09a79 commit 3b05baf

File tree

4 files changed

+172
-132
lines changed

4 files changed

+172
-132
lines changed

.buildkite/pipeline.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -221,11 +221,16 @@ steps:
221221
# to check compatibility, also add Enzyme to the main environment
222222
# (or Pkg.test, which merges both environments, could fail)
223223
Pkg.activate(".")
224+
# Try to co-develop Enzyme and KA, if that fails, try just to dev Enzyme
224225
try
225-
Pkg.develop("Enzyme")
226+
Pkg.develop([PackageSpec("Enzyme"), PackageSpec("KernelAbstractions")])
226227
catch err
227-
@error "Could not install Enzyme" exception=(err,catch_backtrace())
228-
exit(3)
228+
try
229+
Pkg.develop([PackageSpec("Enzyme")])
230+
catch err
231+
@error "Could not install Enzyme" exception=(err,catch_backtrace())
232+
exit(3)
233+
end
229234
end
230235
end
231236

Project.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "CUDA"
22
uuid = "052768ef-5323-5732-b1bb-66c8b64840ba"
3-
version = "5.5.0"
3+
version = "5.5.1"
44

55
[deps]
66
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
@@ -56,7 +56,7 @@ CUDA_Runtime_jll = "0.15"
5656
ChainRulesCore = "1"
5757
Crayons = "4"
5858
DataFrames = "1"
59-
EnzymeCore = "0.7.3"
59+
EnzymeCore = "0.8.2"
6060
ExprTools = "0.1"
6161
GPUArrays = "10.0.1"
6262
GPUCompiler = "0.24, 0.25, 0.26, 0.27"

0 commit comments

Comments
 (0)