gpt4 book ai didi

r - 如何并行化 while 循环?

转载 作者:行者123 更新时间:2023-12-04 03:24:32 25 4
gpt4 key购买 nike

iter <- 1000
myvec <- c()
while(is.null(myvec) || nrow(myvec) <= iter){
x = rnorm(10, mean = 0, sd = 1)
if(sum(x) > 2.5){
myvec <- rbind(myvec, x)
}
}

我想并行化上面的 while 循环,我不断迭代,直到 myvec 中总共有 iter = 1000 条目。我查看了this在此处发布,但我认为那里的答案不适用于我的示例。

最佳答案

实际上,您不需要并行化 while 循环。您可以像下面这样在 x 上矢量化您的操作

iter <- 1000
myvec <- c()
while (is.null(myvec) || nrow(myvec) <= iter) {
x <- matrix(rnorm(iter * 10, mean = 0, sd = 1), ncol = 10)
myvec <- rbind(myvec, subset(x, rowSums(x) > 2.5))
}
myvec <- head(myvec, iter)

iter <- 1000
myvec <- list()
nl <- 0
while (nl < iter) {
x <- matrix(rnorm(iter * 10, mean = 0, sd = 1), ncol = 10)
v <- subset(x, rowSums(x) > 2.5)
nl <- nl + nrow(v)
myvec[[length(myvec) + 1]] <- v
}
myvec <- head(do.call(rbind, myvec), iter)

我相信即使你有很大的 iter 也会快得多。

关于r - 如何并行化 while 循环?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67863515/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com