-
Notifications
You must be signed in to change notification settings - Fork 218
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
openPMD adios2 output missing #3382
Comments
ADIOS2 does not create or need This is identical to ADIOS1 behavior with |
@ax3l Sorry for the confusion: no data at all is created. (I will correct the post above.) |
@PrometheusPi ok, I'll let @franzpoeschel investigate this, since it seems PIConGPU specific. Also double-check that all backends you expect in openPMD-api, i.e. the ADIOS2 backend, are available, please: https://openpmd-api.readthedocs.io/en/0.12.0-alpha/citation.html#dependent-software |
openPMD 0.12.0 requires ADIOS 2.6. Can you verify whether your openPMD build includes an ADIOS backend? |
@ax3l We might want to consider throwing an exception in that case just like ADIOS1 does instead of silently doing nothing… |
@franzpoeschel The cluster only provides |
Okay - adios 2 2.5.5 works with openPMD-api 0.11.1 - I installed it (ctest failed with MPI) but now I get the following compile error:
|
I will remove 1fb4d57 and try again |
Next error:
|
I think @ax3l deployed the latest OpenPMD software stack for Summit. This can be activated by
|
Yeah, the openPMD plugin in PIConGPU has always relied on 0.12.0 features in the openPMD API, so your best bet is going to be installing ADIOS2.6.0 manually for now. I'm using something like this atm: # set PREFIX to your preferred install prefix
install_adios2() {
if [ ! -d ADIOS2 ]; then
git clone https://github.com/ornladios/ADIOS2
fi
cd ADIOS2
git checkout master
if [ ! -d build ]; then
mkdir build
cd build
cmake .. -DADIOS2_BUILD_EXAMPLES=OFF -DADIOS2_BUILD_TESTING=OFF \
-DCMAKE_INSTALL_PREFIX="$PREFIX" -DADIOS2_USE_Fortran=OFF \
-DADIOS2_USE_BZip2=OFF -DADIOS2_USE_PNG=OFF \
|| wait 1 && cmake .
else
cd build
fi
make -j `nproc` install
cd ../..
} EDIT: Or try @benjha's suggestion first, that one looks a bit easier ;) |
The module provided by @ax3l worked like a charm. ADIOS2 data could be produced on summit using the openPMD plugin. |
Excellent, glad this helps. I requested ADIOS2 2.6.0 deployment on Summit and also triggered workflows to get newer ADIOS2 releases faster, but they seem to be still in the pipeline.
In order to avoid some confusion and focus maintainance, I discussed with @franzpoeschel today that we will disable ADIOS1 writes though openPMD-api in PIConGPU with a clear error message at runtime. While we can skim off the old libSplash HDF5 plugin soon, we will keep the original ADIOS1 plugin in PIConGPU for a bit longer, for purely conservative reasons. We will do no efforts on writing through openPMD-api via ADIOS1, since this diverts resources we need to put in:
The goal has to be to use openPMD-api with ADIOS2 (and HDF5 for smaller runs) and triage if there are issues left that I have not already caught while we are using it in WarpX. I am optimistic that we have pretty good stability for ADIOS2 at this point, so it's good to apply it on a broader basis now. |
@ax3l FYI PIConGPU already does not have a standalone HDF5 output plugin (#3361) and the plan is to remove all HDF5 / libSplash in other plugins in two weeks (#3357). So the only way to output anything in HDF5 format would be via openPMD-API. I don't think it causes conflicts with anything you wrote regarding ADIOS or openPMD-API side, just the HDF5 removal part is partialy happened already and partially will happen real soon hopefully. |
Thx for the heads-up @sbastrakov. Looks good. |
I just ran a default LWFA simulation on summit using ADIOS2 (adios2/2.5.0 module) and openPMD-api 0.12.0. PIConGPU compiled without problems and the interface for the openPMD plugin was created. However, no
output files are created. The openPMD directory is completely empty. I ran both:*.bp
The openPMD directory is created and the simulation reaches 100%, but no output is created.
stdout and stderr give no clue of an error.
@ax3l @psychocoderHPC @franzpoeschel Any ideas what might cause this problem?
The text was updated successfully, but these errors were encountered: