pnorbert
pnorbert
confirmed
Well, yes, that's the reason why adding bool into the list of supported types is not possible. The Variable class does not compile because the data pointer is unusable on...
``` adios@SURFACE116324:~/ADIOS2/build.28$ date Wed Apr 27 13:33:34 EDT 2022 adios@SURFACE116324:~/ADIOS2/build.28$ git status On branch release_28 Your branch is up to date with 'upstream/release_28'. ```
Adding the path to HDF5 manually fixes this problem: ``` $ cmake -DCMAKE_INSTALL_PREFIX=/home/adios/install \ -DCMAKE_PREFIX_PATH="/opt/adios2;/opt/hdf5-1.13.0/parallel" \ -DCMAKE_BUILD_TYPE=RelWithDebInfo .. ... -- Found BZip2: /usr/lib/x86_64-linux-gnu/libbz2.so (found version "1.0.8") -- Looking for BZ2_bzCompressInit...
ping @jychoi-hpc since we need this for XGC at 4k runs. There is trouble loading the shared libraries into 24600 processes.
Use -static in the flags during cmake to make this work `CFLAGS="-static" CXXFLAGS="-static" FCFLAGS="-static"` This will forcibly turn off -DBUILD_SHARED_LIBS and will not allow to find any dynamic library.
Well, numpy has functions to allocate arrays with initialization, like np.zeros, np.ones, np.full if someone wants to do that. As Franz explained, adios does not touch memory cells that has...
Michael, Can you make your file available for us at OLCF or NERSC? Is this a single bp file or a directory with many subfiles? This is the diagnostics written...
Okay, I see. ADIOS does not cache it. It is the system that caches data. With the current file format and read implementation, there are 7000 consecutive seeks and reads...
I meant, was it in cache or not. On Mon, Mar 5, 2018 at 1:01 PM, Michael Churchill wrote: > HDF5 is in the same location, you can try it...