I'm afraid not. Linpack solves a system of linear equations (a matrix with dimensions Problem Size x Leading Dimensions, 10000 x 10008 in your case) where every operand requires a fixed amount of memory (8 bytes). 99% of memory consumed by Linpack is used just to store that matrix. So problem size and memory are bound together.
Good news for you is that Linpack is pretty light on memory stressing. Minor memory instabilities usually don't cause errors in Linpack.
Bookmarks