是否detectCores()
返回当时物理处理器的数量或可用处理器的数量?
detectCores {parallel}
Attempt to detect the number of CPU cores on the current host.
我也为另一个脚本提供了一些专用核心,但我不确定是否detectCores()
只会使用可用资源,或者它是否会注册所有核心。
cl <- makeCluster(detectCores())
registerDoParallel(cl, cores = detectCores())
或者,getDoParWorkers()
获取可用内核数量的正确功能是什么?有什么帮助吗?我经历了这个线程,但没有找到正确的检测方法。