I want to allocate a big matrix in my Fortran code running on Windows system.
The matrix is 7812500 by 400 with data type integer(4).
I am getting segmentation fault because the matrix is too large.
On linux machines, the issue was fixed by adding -mcmodem=medium and -Mlarge_arrays.
Are there options for windows systems to fix this large array issue?
Regards