@@ -6600,8 +6600,8 @@ void groupbased_read_write(std::string const &ext)
66006600 auto E_y = write.iterations [0 ].meshes [" E" ][" y" ];
66016601 E_x.resetDataset (ds);
66026602 E_y.resetDataset (ds);
6603- E_x.storeChunk ( shareRaw ( &data) , {0 }, {1 });
6604- E_y.storeChunk ( shareRaw ( &data) , {0 }, {1 });
6603+ E_x.storeChunkRaw ( &data, {0 }, {1 });
6604+ E_y.storeChunkRaw ( &data, {0 }, {1 });
66056605
66066606 E_x.setAttribute (" updated_in_run" , 0 );
66076607 E_y.setAttribute (" updated_in_run" , 0 );
@@ -6618,8 +6618,8 @@ void groupbased_read_write(std::string const &ext)
66186618
66196619 data = 1 ;
66206620
6621- E_x.storeChunk ( shareRaw ( &data) , {0 }, {1 });
6622- E_y.storeChunk ( shareRaw ( &data) , {0 }, {1 });
6621+ E_x.storeChunkRaw ( &data, {0 }, {1 });
6622+ E_y.storeChunkRaw ( &data, {0 }, {1 });
66236623
66246624 E_x.setAttribute (" updated_in_run" , 1 );
66256625 E_y.setAttribute (" updated_in_run" , 1 );
@@ -6655,7 +6655,7 @@ void groupbased_read_write(std::string const &ext)
66556655
66566656 data = 2 ;
66576657
6658- E_x.storeChunk ( shareRaw ( &data) , {0 }, {1 });
6658+ E_x.storeChunkRaw ( &data, {0 }, {1 });
66596659 E_x.setAttribute (" updated_in_run" , 2 );
66606660 }
66616661
0 commit comments