作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我尝试使用 stopCluster 从我的工作区中删除集群时,它似乎不起作用。下面是我正在使用的代码。
> cl <- makeCluster(3)
> cl
socket cluster with 3 nodes on host ‘localhost’
> stopCluster(cl)
> cl
socket cluster with 3 nodes on host ‘localhost’
cl
在我应该删除它之后,仍然被称为具有 3 个节点的套接字集群。我不应该得到一个错误
object cl is not found
?我如何知道我的集群实际上已被删除?一个相关的问题:如果我关闭 R,集群是否终止并且我的计算机恢复到能够使用其所有内核的正常状态?
最佳答案
你不应该得到这样的错误 cl
未找到,直到您运行 rm(cl)
.停止集群不会从您的环境中删除对象。
使用 showConnections
查看没有连接处于事件状态:
> require(parallel)
Loading required package: parallel
> cl <- makeCluster(3)
> cl
socket cluster with 3 nodes on host ‘localhost’
> showConnections()
description class mode text isopen can read can write
3 "<-localhost:11129" "sockconn" "a+b" "binary" "opened" "yes" "yes"
4 "<-localhost:11129" "sockconn" "a+b" "binary" "opened" "yes" "yes"
5 "<-localhost:11129" "sockconn" "a+b" "binary" "opened" "yes" "yes"
> stopCluster(cl)
> showConnections()
description class mode text isopen can read can write
>
关于r - 如何检查 stopCluster (R) 是否有效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38317675/
当我尝试使用 stopCluster 从我的工作区中删除集群时,它似乎不起作用。下面是我正在使用的代码。 > cl cl socket cluster with 3 nodes on host ‘l
我读到你必须在运行并行函数后使用 stopCluster():R 中的 foreach()。但是,我可以使用 registerDoParallel() ,然后在不使用 stopCluster() 的情
我是一名优秀的程序员,十分优秀!