OpenCL-Haskell 库的最佳分层模块路径是什么?
我正在创建一个 OpenCL 高级 haskell 库。 Haskell 树中放置它的最佳路径在哪里?我认为它应该位于 Graphics
子树之外,但我不知道该把它放在哪里。
它基于 Jeff Heard OpenCLRaw(他将其放在 System.OpenCL.Raw.V10
上)。
更新: 我刚刚启动了一个存储库,http://github.com/zhensydow/opencl
更新:< 的选项(以及答案)
- System.GPU.OpenCL
- Control.Parallel.OpenCLforeign.OpenCL
- /strong> 我建议
I'm creating a OpenCL high-level haskell library. Where's the best path in haskell tree for put it? I think it should be outside of Graphics
subtree but I dont know where to put it.
It's based on Jeff Heard OpenCLRaw (He put that one on System.OpenCL.Raw.V10
).
Update:
I just started a repository, http://github.com/zhensydow/opencl
Update: Options that I propose (and fomr answers)
- System.GPU.OpenCL
- Control.Parallel.OpenCL
- Foreign.OpenCL
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其放入
Control.Parallel
中怎么样?haskell-mpi
包使用Control.Parallel .MPI
,还有常用的Control.Parallel.Strategies
,因此它似乎是一个合适的前缀。无耻插件:我为了好玩而编写了一个小脚本,从 Hackage 上的所有包中提取分层模块树。它对于查看其他包使用的分层模块可能很有用。我将清理代码并在将来的某个时间发布它。目前,这是截至 2011 年 5 月的 Hackage 树。
How about putting it in
Control.Parallel
? Thehaskell-mpi
package usesControl.Parallel.MPI
, and there's also the commonly usedControl.Parallel.Strategies
so it seems like an appropriate prefix.Shameless plug: I wrote a small script for fun to extract the hierarchical module tree from all packages on Hackage. It might be useful for seeing what hierarchical modules other packages use. I'll clean up the code and release it some time in the future. For now, here's the Hackage tree as of May 2011.