-
Notifications
You must be signed in to change notification settings - Fork 51
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
Release 0.14.3 backports #1135
Merged
Merged
Release 0.14.3 backports #1135
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
43bec62
Read: time/dt also in long double (#1096)
ax3l e242f1a
Executables: CXX_STANDARD/EXTENSIONS (#1102)
ax3l 57892c3
Doc: More Locations -DPython_EXECUTABLE (#1104)
ax3l 3b647f8
NVCC + C++17 (#1103)
ax3l 23a5431
Lazy parsing: Make findable in docs and use in openpmd-ls (#1111)
franzpoeschel a52966b
HDF5: Document HDF5_USE_FILE_LOCKING (#1106)
ax3l bea0c0c
Avoid object slicing when deriving from Series class (#1107)
franzpoeschel eb3e50d
Doc: OMPI_MCA_io Control (#1114)
ax3l 29b0069
openPMD.hpp: Include auxiliary StringManip (#1124)
ax3l 7c7c266
CXX Std: Remember <variant> Impl. (#1128)
ax3l 906d68f
Spack: No More `load -r` (#1125)
ax3l d3f687e
Fix AppVeyor: Python Executable (#1127)
ax3l 9325daa
Test 8b (Bench Read Parallel): Support Variable encoding, Fix Bugs (#…
guj 6f7f5b1
HDF5 I/O optimizations (#1129)
jeanbez 8d580aa
Include known issues section for HDF5 (#1132)
jeanbez 144e8b6
Include check for paged allocation (#1133)
jeanbez 5943435
libfabric 1.6+: Document SST Work-Arounds (#1134)
ax3l 149fe17
Fix: Read Inconsistent Zero Pads (#1118)
ax3l ddf6db3
Release: 0.14.3
ax3l 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 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 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,57 @@ | ||
name: 🪟 Windows | ||
|
||
on: [push, pull_request] | ||
|
||
concurrency: | ||
group: ${{ github.ref }}-${{ github.head_ref }}-windows | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build_win_msvc: | ||
name: MSVC w/o MPI | ||
runs-on: windows-latest | ||
if: github.event.pull_request.draft == false | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build & Install | ||
run: | | ||
python3.exe -m pip install --upgrade pip | ||
python3.exe -m pip install --upgrade numpy | ||
|
||
pwsh "share\openPMD\download_samples.ps1" build | ||
cmake -S . -B build ` | ||
-DCMAKE_BUILD_TYPE=Debug ` | ||
-DopenPMD_USE_MPI=OFF | ||
cmake --build build --config Debug --parallel 2 | ||
cmake --build build --config Debug --target install | ||
|
||
# add before install, and fix Python path: | ||
# ctest --test-dir build -C Debug --output-on-failure | ||
|
||
|
||
build_win_clang: | ||
name: Clang w/o MPI | ||
runs-on: windows-2019 | ||
if: github.event.pull_request.draft == false | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: seanmiddleditch/gha-setup-ninja@master | ||
- name: Build & Install | ||
shell: cmd | ||
run: | | ||
python3.exe -m pip install --upgrade pip | ||
python3.exe -m pip install --upgrade numpy | ||
|
||
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\vc\Auxiliary\build\vcvarsall.bat" x64 | ||
pwsh "share\openPMD\download_samples.ps1" build | ||
cmake -S . -B build ^ | ||
-G "Ninja" ^ | ||
-DCMAKE_C_COMPILER=clang-cl ^ | ||
-DCMAKE_CXX_COMPILER=clang-cl ^ | ||
-DCMAKE_BUILD_TYPE=Release ^ | ||
-DopenPMD_USE_MPI=OFF | ||
cmake --build build --config Release --parallel 2 | ||
cmake --build build --config Debug --target install | ||
|
||
# add before install, and fix Python path: | ||
# ctest --test-dir build -C Debug --output-on-failure |
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
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
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
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
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.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Upsi 🙈
Should have read
0.14.3
. Classic.