-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into parallel_reduce-op-param
- Loading branch information
Showing
21 changed files
with
1,864 additions
and
1,067 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
jobname: [ROCM6-JULIA1_9_1-AMDGPU0_8_6] | ||
jobname: [ROCM6-JULIA1_10_4-AMDGPU0_8_6] | ||
|
||
steps: | ||
# Only trigger CI for certain "actors" (those commenting the PR, not the PR originator) | ||
|
@@ -36,11 +36,11 @@ jobs: | |
- name: GitHub API Request | ||
if: steps.check.outputs.triggered == 'true' | ||
id: request | ||
uses: octokit/request-action@v2.1.9 | ||
uses: octokit/request-action@v2.x | ||
with: | ||
route: ${{github.event.issue.pull_request.url}} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
|
||
# Create a separate PR status pointing at GitHub Actions tab URL | ||
# just like any other third-party service | ||
|
@@ -67,15 +67,15 @@ jobs: | |
if: steps.check.outputs.triggered == 'true' | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
token: ${{secrets.GITHUB_TOKEN}} | ||
repository: ${{fromJson(steps.request.outputs.data).head.repo.full_name}} | ||
ref: ${{steps.pr_data.outputs.branch}} | ||
|
||
- name: Instantiate | ||
if: steps.check.outputs.triggered == 'true' | ||
run: | | ||
source /etc/profile.d/lmod.sh | ||
module load julia/1.9.1 | ||
module load julia/1.10.4 | ||
module load rocm | ||
julia --project -e 'using Pkg; Pkg.instantiate()' | ||
julia --project -e 'using JACC.JACCPreferences; JACCPreferences.set_backend("AMDGPU")' | ||
|
@@ -84,15 +84,15 @@ jobs: | |
if: steps.check.outputs.triggered == 'true' | ||
run: | | ||
source /etc/profile.d/lmod.sh | ||
module load julia/1.9.1 | ||
module load julia/1.10.4 | ||
module load rocm | ||
julia --project -e 'using Pkg; Pkg.test()' | ||
- name: Report PR status | ||
if: always() && steps.check.outputs.triggered == 'true' | ||
uses: geekdude/[email protected] | ||
with: | ||
authToken: ${{ secrets.GITHUB_TOKEN }} | ||
authToken: ${{secrets.GITHUB_TOKEN}} | ||
context: "ci-GPU-AMD ${{matrix.jobname}}" | ||
state: ${{job.status}} | ||
sha: ${{fromJson(steps.request.outputs.data).head.sha}} | ||
|
This file contains 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 |
---|---|---|
|
@@ -36,7 +36,7 @@ jobs: | |
- name: GitHub API Request | ||
if: steps.check.outputs.triggered == 'true' | ||
id: request | ||
uses: octokit/request-action@v2.1.9 | ||
uses: octokit/request-action@v2.x | ||
with: | ||
route: ${{github.event.issue.pull_request.url}} | ||
env: | ||
|
@@ -49,7 +49,7 @@ jobs: | |
uses: geekdude/[email protected] | ||
with: | ||
authToken: ${{secrets.GITHUB_TOKEN}} | ||
context: "ci-gpu-nvidia-ornl ${{ matrix.jobname }}" | ||
context: "ci-gpu-NVIDIA ${{ matrix.jobname }}" | ||
state: "pending" | ||
sha: ${{fromJson(steps.request.outputs.data).head.sha}} | ||
target_url: https://github.com/${{github.repository}}/actions/runs/${{github.run_id}} | ||
|
@@ -86,7 +86,7 @@ jobs: | |
uses: geekdude/[email protected] | ||
with: | ||
authToken: ${{secrets.GITHUB_TOKEN}} | ||
context: "ci-gpu-nvidia-ornl ${{matrix.jobname}}" | ||
context: "ci-gpu-NVIDIA ${{matrix.jobname}}" | ||
state: ${{job.status}} | ||
sha: ${{fromJson(steps.request.outputs.data).head.sha}} | ||
target_url: https://github.com/${{github.repository}}/actions/runs/${{github.run_id}} |
This file contains 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 |
---|---|---|
|
@@ -22,4 +22,4 @@ AMDGPU = "0.8" | |
Atomix = "0.1" | ||
CUDA = "5" | ||
Preferences = "1.4.0" | ||
julia = "1.9.0" | ||
julia = ">= 1.9.0" |
This file contains 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.