Originally posted by: Brazen
use taskset
you can get usage info with 'man taskset'
you could probably even combine it with 'nice' to make sure the program takes over the cpu completely, just be sure you leave one cpu core for the system to use.
so maybe something like this "sudo taskset -c N nice -n -20 myprogram' where N is the cpu core you want this instance of the program to run on. Also, you have to use sudo to use nice with higher priorities.