0
I've already found this SU question (it is similar but not the same):
How to limit Google Compute Engine CPU utilization to 100%
I don't want the parallel processing to be sandboxed from each other, the different processes will need to interact with each other regularly... Kubernetes, if I understand the concept correctly, is about sandboxing (containerizing) different processes so that they cannot interfere with each other for security concerns, it's suppose to be the more efficient version of sandboxing VM's (aka I don't have to worry about other people and their VM's infecting my VM)...
The only alternative I can think of is initializing several smaller VM's with only a single CPU that then interact with each other via a REST API but that would be inefficient for my particular project given the amount of RAM needed for the neural network is just a little less than the most RAM available from the largest High-memory machine type... I know the Intel chips are suppose to have optimization features but there are very specific sections that I could explicitly assign for parallel processing... anybody have a link?