Skip to content

Commit

Permalink
Enzyme: Adapt to pending version breaking update (#2490)
Browse files Browse the repository at this point in the history
[only downstream]
  • Loading branch information
wsmoses authored Sep 22, 2024
1 parent 4e09a79 commit 3b05baf
Show file tree
Hide file tree
Showing 4 changed files with 172 additions and 132 deletions.
11 changes: 8 additions & 3 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,11 +221,16 @@ steps:
# to check compatibility, also add Enzyme to the main environment
# (or Pkg.test, which merges both environments, could fail)
Pkg.activate(".")
# Try to co-develop Enzyme and KA, if that fails, try just to dev Enzyme
try
Pkg.develop("Enzyme")
Pkg.develop([PackageSpec("Enzyme"), PackageSpec("KernelAbstractions")])
catch err
@error "Could not install Enzyme" exception=(err,catch_backtrace())
exit(3)
try
Pkg.develop([PackageSpec("Enzyme")])
catch err
@error "Could not install Enzyme" exception=(err,catch_backtrace())
exit(3)
end
end
end
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "CUDA"
uuid = "052768ef-5323-5732-b1bb-66c8b64840ba"
version = "5.5.0"
version = "5.5.1"

[deps]
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
Expand Down Expand Up @@ -56,7 +56,7 @@ CUDA_Runtime_jll = "0.15"
ChainRulesCore = "1"
Crayons = "4"
DataFrames = "1"
EnzymeCore = "0.7.3"
EnzymeCore = "0.8.2"
ExprTools = "0.1"
GPUArrays = "10.0.1"
GPUCompiler = "0.24, 0.25, 0.26, 0.27"
Expand Down
Loading

2 comments on commit 3b05baf

@maleadt
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/115669

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v5.5.1 -m "<description of version>" 3b05baf34eedec0b82863d3230f190af6729ec2f
git push origin v5.5.1

Please sign in to comment.