Unfortunately we don't have a built in way of specifying that you want round-robin placement. There are a couple of things you could try though:
-
Submit each task a separate, 1 core job and /orderby the number of available cores
-
Submit 4 Node tasks which run a script that starts two tasks (or just set your command line to "myapp1.exe && myapp2.exe")
-
Use MPI to start them. Request 4 nodes and then do an mpiexec /cores:2 for 4 nodes with 2 cores each
Thanks,
Josh
-Josh