1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
<?xml version="1.0"?>
<adios-config host-language="C">
<adios-group name="abc" coordination-communicator="comm" time-index="tidx">
<!-- dimension variables (scalars) -->
<var name="gdim1" type="integer"/>
<var name="ldim1" type="integer"/>
<var name="offs1" type="integer"/>
<!-- Scalars -->
<var name="s0" type="integer"/>
<!-- 1D Arrays -->
<global-bounds dimensions="gdim1" offsets="offs1">
<var name="a1" dimensions="ldim1" type="integer"/>
</global-bounds>
<attribute name="description" type="string" path="/test"
value="Output from testing adios_set_path()" />
</adios-group>
<method group="abc" method="MPI"/>
<buffer max-size-MB="20"/>
</adios-config>
|