如何将代码分散到多核处理器的核心上
有兴趣: 1)是否可以在类似unix的操作系统中执行此操作? 2)是否可以挖掘?
我很高兴得到所有的答案。
Interested in:
1) Is it possible to do this in a unix like OS?
2) If it is possible to dig?
I would be happy all the answers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建多个进程(例如 fork)或多个线程(例如 pthread_create)。
Either create multiple processes (e.g., fork) or multiple threads (e.g., pthread_create).