Is there a recommended way for users to avoid this error when writing large output files?
I would really appreciate any suggestions.
DataOutBase::DataOutFilter data_filter(DataOutBase::DataOutFilterFlags(true,true));
data_out.write_filtered_data(data_filter);
data_out.write_hdf5_parallel(data_filter,
write_mesh_file,
mesh_filename,
solution_filename,
mpi_comm);
Here are the lines pulled from data_out_base.cc (9.7.0 documentation)
833 node_dataset_id = H5Pcreate(H5P_DATASET_CREATE);
# ifdef DEAL_II_WITH_ZLIB
H5Pset_deflate(node_dataset_id,
get_zlib_compression_level(flags.compression_level));
H5Pset_chunk(node_dataset_id, 2, cell_ds_dim); //<------- Here it sets some chunk size?
# endif
cell_dataset = H5Dcreate(h5_mesh_file_id,
"cells",
H5T_NATIVE_UINT,
cell_dataspace,
H5P_DEFAULT,
node_dataset_id,
H5P_DEFAULT);
H5Pclose(node_dataset_id);
# endif
840 AssertThrow(cell_dataset >= 0, ExcIO()); // <--- line 8330 in my error
--
The deal.II project is located at http://www.dealii.org/
For mailing list/forum options, see https://groups.google.com/d/forum/dealii?hl=en
---
You received this message because you are subscribed to the Google Groups "deal.II User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dealii+un...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/dealii/f1bd81c7-9629-460b-977f-9b2c627bdd59%40colostate.edu.
To view this discussion visit https://groups.google.com/d/msgid/dealii/CAALjy%3DgOi7P8VtEWWgqe%2ByULDV-AD9LYeepzWdsyeycoahx-XQ%40mail.gmail.com.
--
The deal.II project is located at http://www.dealii.org/
For mailing list/forum options, see https://groups.google.com/d/forum/dealii?hl=en
---
You received this message because you are subscribed to the Google Groups "deal.II User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dealii+un...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/dealii/b5366d3f-6555-4683-9085-8ffd89c41218%40colostate.edu.