本文介绍了如何编程多核的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用双核程序在一个双核计算机上使用一个核进行密集的计算并使用另一个核同时输出结果是否合适?我可以使用MPI库执行此任务吗?
我在双核计算机上尝试了多线程,其思想是一个线程进行计算,而另一个线程显示结果,但是两个内核不能同时处理.
谢谢,
Is it appropriate to have a program that uses a core to do an intensive calculation and another core to output the results simultaneously on a dualcore machine? can i use MPI library to do this task?
I tried multithreading on a dualcore machine with the same idea that one thread does the calculation while the other thread displaying results, but the two cores do not process simultaneously.
Thanks,
推荐答案
这篇关于如何编程多核的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!