|
double buffer[buffer_size]; |
When running on 1024^2 with ToyQ on Mac, the buffer creation segfaults. Replacing this line with
double *buffer = (double *) malloc(buffer_size*sizeof(double));
seems to work.
Unless someone objects, I will change this to an explicit malloc (note: need to check parallel case).
METHOD/Project/CPU/Src/serialSaveDataHDF5.cc
Line 95 in 9865d60
When running on 1024^2 with ToyQ on Mac, the buffer creation segfaults. Replacing this line with
seems to work.
Unless someone objects, I will change this to an explicit
malloc(note: need to check parallel case).