-
Notifications
You must be signed in to change notification settings - Fork 7
Julia 1.12 support and maintenance #295
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
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
8fc5715
Add CompatHelper
github-actions[bot] 96321db
Install only one backend during CI
github-actions[bot] 352e986
Build docs with LTS
github-actions[bot] 95009db
Loosen iterations test
michel2323 a238be5
AMDGPU unsafe_wrap fix
invalid-email-address b83b33e
Change default AMDGPU solver
invalid-email-address f962c23
deprecated warning
github-actions[bot] e994e9f
Bump AMDGPU compat
invalid-email-address 61f1622
Adding GPUArrays PR branch for now
michel2323 084b2ae
Make recourse compile with AMDGPU
invalid-email-address a5a7ebf
Mark recourse formulation as broken on AMD
invalid-email-address f7b3fb2
fix
invalid-email-address b5d2577
Add GPUArrays fix to ExaPF
invalid-email-address dd2ed72
Apply suggestions from code review
amontoison bb35d4c
Update .github/workflows/action.yml
amontoison 1c970d8
Update .github/workflows/action.yml
amontoison File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| name: CompatHelper | ||
|
|
||
| on: | ||
| schedule: | ||
| - cron: '0 0 * * *' | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| CompatHelper: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - name: Get Julia compatibility | ||
| id: julia_compat | ||
| # NOTE: this requires a Julia compat lower-bound with minor version! | ||
| run : | | ||
| version=$(grep '^julia = ' Project.toml | grep -o '".*"' | cut -d '"' -f2) | ||
| echo "::set-output name=version::$version" | ||
| - uses: julia-actions/setup-julia@v2 | ||
| with: | ||
| version: ${{ steps.julia_compat.outputs.version }} | ||
| - name: Install CompatHelper | ||
| run: | | ||
| import Pkg | ||
| name = "CompatHelper" | ||
| version = "3" | ||
| Pkg.add(; name, version) | ||
| shell: julia --color=yes {0} | ||
| - name: Run CompatHelper | ||
| run: | | ||
| using CompatHelper | ||
| CompatHelper.main() | ||
| shell: julia --color=yes {0} | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,12 @@ | ||
| name = "ExaPF" | ||
| uuid = "0cf0e50c-a82e-488f-ac7e-41ffdff1b8aa" | ||
| authors = ["Adrian Maldonado <[email protected]>", "Michel Schanen <[email protected]>", "François Pacaud <[email protected]>", "Alexis Montoison <[email protected]>"] | ||
| version = "0.12.0" | ||
| authors = ["Adrian Maldonado <[email protected]>", "Michel Schanen <[email protected]>", "François Pacaud <[email protected]>", "Alexis Montoison <[email protected]>"] | ||
|
|
||
| [deps] | ||
| Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e" | ||
| ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210" | ||
| GPUArraysCore = "46192b85-c4d5-4398-a991-12ede77f4527" | ||
| KLU = "ef3ab10e-7fda-4108-b977-705223b18434" | ||
| KernelAbstractions = "63c18a36-062a-441e-b654-da1e3ab1ce7c" | ||
| Krylov = "ba0b0d4f-ebba-5204-a429-3ac8c609bfb7" | ||
|
|
@@ -25,10 +26,11 @@ ExaPFAMDGPUExt = "AMDGPU" | |
| ExaPFCUDAExt = "CUDA" | ||
|
|
||
| [compat] | ||
| AMDGPU = "1.0" | ||
| AMDGPU = "2.0" | ||
| Adapt = "4.3" | ||
| CUDA = "5.7.3" | ||
| ForwardDiff = "1.0" | ||
| GPUArraysCore = "0.2.0" | ||
| KLU = "0.6" | ||
| KernelAbstractions = "0.9" | ||
| Krylov = "0.10" | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,6 @@ module ExaBenchmark | |
|
|
||
| using Printf | ||
| # GPU | ||
| using CUDA | ||
| using KernelAbstractions | ||
|
|
||
| # Algorithms | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,3 @@ | ||
| using CUDA | ||
| using KernelAbstractions | ||
| using Test | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.