gpt4 book ai didi

clojure - 有没有办法控制与 pmap 一起使用的线程数?

转载 作者:行者123 更新时间:2023-12-04 14:35:02 26 4
gpt4 key购买 nike

我只是使用 pmap 对 clojure 进行一些性能测试,我希望能够控制与 pmap 一起使用的线程数。我知道在使用 OpenMP 之类的东西时,可以使用 omp_set_num_threads() 设置线程数。我想知道 clojure 中是否会有类似的东西。

最佳答案

这是 pmap 的代码:

(defn pmap
"Like map, except f is applied in parallel. Semi-lazy in that the
parallel computation stays ahead of the consumption, but doesn't
realize the entire result unless required. Only useful for
computationally intensive functions where the time of f dominates
the coordination overhead."
([f coll]
(let [n (+ 2 (.. Runtime getRuntime availableProcessors))
rets (map #(future (f %)) coll)
step (fn step [[x & xs :as vs] fs]
(lazy-seq
(if-let [s (seq fs)]
(cons (deref x) (step xs (rest s)))
(map deref vs))))]
(step rets (drop n rets))))

如您所见, pmap需要 所有可用的处理器 并循环使用它们。所以,不,没有办法设置线程数......但你总是可以编写自己的 pmap ,它将提供此类功能。

关于clojure - 有没有办法控制与 pmap 一起使用的线程数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4456680/

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