由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Unix版 - 如何在程序中调用双(多)CPU进行计算?
相关主题
有没有sun unix的高手呀?[转载] logrotate
Which command to check the CPU number?怎样把这个结果打入文件
怎样查系统信息?cygwin是干什么的
请教关于查cpu信息的命令怎样写 makefile
Which option of gcc enables multi-cpu support?Re: for cluster, which is better operating system?
[转载] Help ! hwo to get the # of cpu's ???parallel computation
[转载] How is Compaq Prolian ML570?anybody debuged MPI programs?
question about temperay file in sort command请教:哪有cluster上run的基于MPI的图形演示程序
相关话题的讨论汇总
话题: cpu话题: multi话题: cpus话题: computer话题: parallel
进入Unix版参与讨论
1 (共1页)
i*****d
发帖数: 5
1
我要在UNIX平台上,用C语言调用一个仿真软件,为提高计算速度,希望
能用多CPU同时运行计算,如何实现呢?
谢谢各位大虾指教!
t******q
发帖数: 117
2
Reprogram your C code to multi thread,
and your unix should be aware of the multi CPU.
then, the os will auto assigned your code runing
on different CPUs.
Or read some parrallel processing material.
This is that area as I think.

【在 i*****d 的大作中提到】
: 我要在UNIX平台上,用C语言调用一个仿真软件,为提高计算速度,希望
: 能用多CPU同时运行计算,如何实现呢?
: 谢谢各位大虾指教!

i*****d
发帖数: 5
3
how? I mean if some functions of C language can control
using multi-CPUs?
Thanks!

【在 t******q 的大作中提到】
: Reprogram your C code to multi thread,
: and your unix should be aware of the multi CPU.
: then, the os will auto assigned your code runing
: on different CPUs.
: Or read some parrallel processing material.
: This is that area as I think.

f******t
发帖数: 61
4
For parallel computer, specific C library for using multi-CPU
is always available. You can refer to the manual of
the computer.
MPI is a standard programming interface for parallel computer.

【在 i*****d 的大作中提到】
: how? I mean if some functions of C language can control
: using multi-CPUs?
: Thanks!

1 (共1页)
进入Unix版参与讨论
相关主题
请教:哪有cluster上run的基于MPI的图形演示程序Which option of gcc enables multi-cpu support?
请问VIM在SSH里面能用不同的颜色highlight syntax[转载] Help ! hwo to get the # of cpu's ???
内存问题[转载] How is Compaq Prolian ML570?
这个abs*********文件是什么东东啊?question about temperay file in sort command
有没有sun unix的高手呀?[转载] logrotate
Which command to check the CPU number?怎样把这个结果打入文件
怎样查系统信息?cygwin是干什么的
请教关于查cpu信息的命令怎样写 makefile
相关话题的讨论汇总
话题: cpu话题: multi话题: cpus话题: computer话题: parallel