You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are not setting the dimensions correctly for derived variables. In the following example, there is a file with 3 variables (3D 200x200x200) and a derived variable that has only stats in the bp file:
If I run this code with one of the normal variables (var1 for example) the code in source/adios2/toolkit/format/bp5/BP5Deserializer.cpp creates an entry in the RR structure for a chunk of {10,10,10} and size 2894480 bytes.
For the derived variable there are 3 RR created (for var1, var2, var3) each set as {200,200,200} and 64000000 bytes, and when I look in the ApplyExpression, this function is called on a derived data of {200,200,200} and magnitude is applied on three arrays of {200,200,200}.
The text was updated successfully, but these errors were encountered:
We are not setting the dimensions correctly for derived variables. In the following example, there is a file with 3 variables (3D 200x200x200) and a derived variable that has only stats in the bp file:
Now, let's say we have a python code that sets a selection and reads a variable (given as an input parameter):
If I run this code with one of the normal variables (var1 for example) the code in
source/adios2/toolkit/format/bp5/BP5Deserializer.cpp
creates an entry in the RR structure for a chunk of {10,10,10} and size 2894480 bytes.For the derived variable there are 3 RR created (for var1, var2, var3) each set as {200,200,200} and 64000000 bytes, and when I look in the ApplyExpression, this function is called on a derived data of {200,200,200} and magnitude is applied on three arrays of {200,200,200}.
The text was updated successfully, but these errors were encountered: