I was recently testing out a batch file that was written for cmd, and trying to add some TCC fanciness around it to make it work a little better.
In essence, the script will launch a program and it's assigning affinity and node to each one so they run on their own core.
The unusual thing started out because cmd.exe expects an argument like "/affinity 4 /node 1", but TCC expects an equal sign after affinity, so just for a TCC batch, I have to change it to "/affinity=4 /node 1"
It's also...
Read more
In essence, the script will launch a program and it's assigning affinity and node to each one so they run on their own core.
The unusual thing started out because cmd.exe expects an argument like "/affinity 4 /node 1", but TCC expects an equal sign after affinity, so just for a TCC batch, I have to change it to "/affinity=4 /node 1"
It's also...
Read more