Would like to know, if thread of a process can be made to run on different set of CPU's in Linux? For instance, let's say we start a process with 30 threads then first 15 threads from this process is made to run on core 0-14 using taskset program, and rest of threads on core 15-29?
Is above configuration possible?