Need to run single-threaded on a Linux cluster
Posted on

Forums
Hi
I need to find out how to run openMx singlethreaded on a Linux system running R 2.15.1
It seems to be running multi-threaded by default and spawning a couple of hundred threads which is causing issues on our cluster which runs a condor queueing system.
thanks
Sarah
the solution....
from Mike Neale via email
mxOption(NULL, "Number of Threads", 2)
-Sarah
Log in or register to post comments
In reply to the solution.... by smedland
That will work. Or rather
That will work. Or rather mxOption(NULL, "Number of Threads", 1) if you want one thread per process. Another way is to install the package this way:
Log in or register to post comments