r - Maximum number of parallel processors in clusterR function? -


i using clusterr() function predict randomforest model on huge data set. therefore use cluster 100+ cores. code looks this:

library(randomforest) library(raster) library(parallel)  r <- stack("...some/multilayer/raster...")  rfo <- # load calculated randomforest object  begincluster(100)  rpred <- clusterr(r, predict, args = list(model = rfo)) 

i expected 100 initialized processors used. however, when @ top in bash, 20 - 30 processes running @ full speed. others on sleep.

when getcluster() cluster 100 sockets running.

is there limitation maximum number of processors in clusterr function or parallel backend?

is there possibility determine maximum number of processors used in clusterr?


Comments

Popular posts from this blog

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -