.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

android - net_scheduler holding wakelock -

sql - MySQL : Getting Entries from a many-to-many table -

java - Retrieving data from database using jsp (Hibernate + Spring + Maven) -