Originally posted by: AntonRudnev
Daniel, thanks. Definitely the parameter works.
With the task manager I found out the number of threads
from 5 to 9 with cplex.SetParam(Cplex.IntParam.Threads, 1)
from 6 to 10 with cplex.SetParam(Cplex.IntParam.Threads, 2)
When I run both versions in parallel, the difference between threads is always 1.
I tried this experiment on CPU with 4 cores. Results are the same. If I use Optimization Studio, the parameter "thread count" exactly checks with the number of used cores (by CPU usage). But under the .NET framework with one thread cplex uses 2 cores, with 2 threads - 3 cores, with 3 and 4 threads - all 4 cores.
Does this parameter mean any bounds on CPU cores used?
#CPLEXOptimizers#DecisionOptimization