TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

GoPar: Automatic Loop Parallelization of Go Programs

14 点作者 wetherbeei大约 12 年前

2 条评论

JulianMorrison大约 12 年前
It's cute, but the work to manually parallelize is pretty light in Go.<p><pre><code> var a []X ... done := make(chan bool) b := make([]Y,len(a)) for i, _ := range a { go func (j int){ b[j] = process(a[j]) done &#60;- true }(i) } for n:=0; n&#60;len(a); n++ { _ = &#60;-done }</code></pre>
评论 #5660757 未加载
codygman大约 12 年前
Well this definitely looks interesting, going to check it out asap and test on my projects.