I have a number-crunching multithreaded software which creates a thread per CPU. For example, if cat /proc/cpuinfo | grep proc | wc -l
prints 24 than the software will create 24 threads.
I want to connect additional X machines with Y cpu cores so that the main sever on which the software runs will see 24+X*Y CPUs. It seems like I'm looking for implementation of SMP over IP.
Any existing solution for that?