.net - I have a 64Gb Ram, 16 Core VM, calling CPLEX from Visual Studio 2015, how do I overcome memory issues? -


the cplex object around 20gb, , have 15 gb of ram left before

cplex error 1001: out of memory.

the console shows

cplex error

after initial search, set following parameters:

cp.setparam(cplex.intparam.nodefileind, 2); cp.setparam(cplex.intparam.workmem, 10000000000); cp.setparam(cplex.param.workdir, "d:\\temp"); cp.setparam(cplex.param.workmem, 10000000000); cp.setparam(cplex.booleanparam.memoryemphasis, true); cp.setparam(cplex.param.threads, 10); 

and still exact same error.

any appreciated.


Comments

Popular posts from this blog

java - pagination of xlsx file to XSSFworkbook using apache POI -

Unlimited choices in BASH case statement -

apache - How do I stop my index.php being run twice for every user -