Scroll to navigation

BPLS.MPI(1) User Commands BPLS.MPI(1)

NAME

bpls.mpi - ADIOS2 utility

DESCRIPTION

usage: bpls [OPTIONS] file [mask1 mask2 ...]

List/dump content of a BP/HDF5 file. A mask can be a shell pattern like with 'ls' e.g. "*/x?". Variables with multiple timesteps are reported with an extra dimensions. The time dimension is the first dimension then.

| -l Print values of all scalars and attributes and min/max values of arrays (no overhead to get them!)
| -a List/match attributes too
List attributes only
| -m List meshes
| -t Read content step by step (stream reading)
| -d Dump matched variables/attributes To match attributes too, add option -a
| -e Treat masks as extended regular expressions
| -o <path> Print to a file instead of stdout
| -s "spec" Offset indices in each dimension (default is 0 for all dimensions) <0 is handled as in python (-1 is last)
| -c "spec" Number of elements in each dimension -1 denotes 'until end' of dimension (default is -1 for all dimensions)
| -y Print data without array indices
| -S Print 8bit integer arrays as strings
| -n "cols" Number of data elements per row to print
| -f "str" Format string to use for one data item in print instead of the default. E.g. "%6.3f"
Show hidden ADIOS attributes in the file
| -D Show decomposition of variables as layed out in file
Specify File transport parameters e.g. "Library=stdio"
| -E <name> Specify ADIOS Engine
| -P string Specify ADIOS Engine Parameters e.g. "SelectSteps=0:n:2"
Examples for slicing: -s "0,0,0" -c "1,99,1": Print 100 elements (of the 2nd dimension). -s "0,0" -c "1,-1": Print the whole 2nd dimension however large it is. -s "-1,-1" -c "1,1": Print the very last element (of a 2D array)

Help options

| -h Print this help.
| -v Print log about what this program is doing. Use multiple -v to increase logging level.
| -V Print version information; compatible with --verbose for additional information, i.e. -v --version.

Typical use: bpls -lav <file>

February 2024 ADIOS