Skip to content
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

Update to v4 artifacts #1223

Merged
merged 3 commits into from
Feb 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci-extended.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
exit 1
fi
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: log-and-convergence-${{ matrix.device }}-${{ matrix.parallel }}
path: |
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
cd build
ctest -L regression -L ${{ matrix.parallel }} -LE perf-reg --timeout 3600
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: log-and-convergence-${{ matrix.parallel }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
cd build
ctest -LE mpi
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: configure-log-unit-macos
path: build/CMakeFiles/CMakeOutput.log
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-short.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: |
cmake -DCMAKE_CXX_FLAGS=-Werror -Bbuild-copyright-check
cmake --build build-copyright-check -t check-copyright
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: configure-log-style
path: build-copyright-check/CMakeFiles/CMakeOutput.log
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
# Pick GPU with most available memory
export CUDA_VISIBLE_DEVICES=$(nvidia-smi --query-gpu=memory.free,index --format=csv,nounits,noheader | sort -nr | head -1 | awk '{ print $NF }')
ctest -LE 'performance|regression'
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: configure-log-unit-${{ matrix.device }}
path: build/CMakeFiles/CMakeOutput.log
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
if grep HtoD profile.txt; then exit 1; fi
if grep DtoH profile.txt; then exit 1; fi

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: configure-log-integration-${{ matrix.device }}
path: |
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
cd build
ctest -R regression_mpi_test:particle_leapfrog

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: configure-log-integration-amdgpu
path: |
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
- [[PR 1161]](https://github.com/parthenon-hpc-lab/parthenon/pull/1161) Make flux field Metadata accessible, add Metadata::CellMemAligned flag, small perfomance upgrades

### Changed (changing behavior/API/variables/...)
- [[PR 1223]](https://github.com/parthenon-hpc-lab/parthenon/pull/1223) Update to v4 artifacts
- [[PR 1216]](https://github.com/parthenon-hpc-lab/parthenon/pull/1216) Move to Kokkos 4.5
- [[PR 1191]](https://github.com/parthenon-hpc-lab/parthenon/pull/1191) Update Kokkos version to 4.4.1
- [[PR 1209]](https://github.com/parthenon-hpc-lab/parthenon/pull/1209) Ordered history output
Expand Down
Loading