《高能计算介绍》PPT课件.ppt

上传人:wuy****n92 文档编号:72524493 上传时间:2023-02-12 格式:PPT 页数:26 大小:704.50KB
返回 下载 相关 举报
《高能计算介绍》PPT课件.ppt_第1页
第1页 / 共26页
《高能计算介绍》PPT课件.ppt_第2页
第2页 / 共26页
点击查看更多>>
资源描述

《《高能计算介绍》PPT课件.ppt》由会员分享,可在线阅读,更多相关《《高能计算介绍》PPT课件.ppt(26页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、 高性能计算介绍什么是高性能计算?(HPC)1.高速运算 2.大内存 3.海量存储常见的高性能计算的实现 1.多CPU共享内存结构(SGI Altix 3000)2.集群(cluster)结构(联想计算集群)操作系统 Unix,Linux,Windows并行开发软件并行开发软件 MPI,OpenMPSGI Altix 3700体系结构一 系统模块1.C brick:32个1.3GHz/3M Intel Itanium2 cpu2.M brick:32G内存3.R brick:路由4.IX brick:输入/输出5.D brick:硬盘扩展(连接1T盘阵)二 体系结构:NUMAflexNUMAf

2、lex全局共享内存全局共享内存全局共享内存全局共享内存的结构的结构的结构的结构 所有内存统一编址所有内存统一编址所有内存统一编址所有内存统一编址,全局共享全局共享全局共享全局共享 本地与远端内存的存取速度不同本地与远端内存的存取速度不同本地与远端内存的存取速度不同本地与远端内存的存取速度不同优点:优点:优点:优点:均衡的、可扩充的性能均衡的、可扩充的性能均衡的、可扩充的性能均衡的、可扩充的性能低延迟的内存访问低延迟的内存访问低延迟的内存访问低延迟的内存访问适于适于适于适于HPCHPC的优化的操作环境的优化的操作环境的优化的操作环境的优化的操作环境容易配置容易配置容易配置容易配置操作系统系统软件

3、:64位Linux Advanced Server+SGI HPC ProPack编译器:Intel C,C+,Fortran,Math Kernel LibraryMPI 并行OpenMP 并行并行计算SGI HPC SGI HPC 并行开发软件包:并行开发软件包:并行开发软件包:并行开发软件包:SGI MPT(Message Passing Toolkit)SGI MPT(Message Passing Toolkit)优化的优化的MPI MPI 和和SHMEM SHMEM 并行编程库并行编程库 MPT MPT 在多个分区系统的性能和在在多个分区系统的性能和在SSISSI上一样,上一样,在

4、跨节点在跨节点时无性能损失时无性能损失SGI NUMASGI NUMA工具集工具集工具集工具集:包含指定包含指定cpucpu、内存的管理工具:、内存的管理工具:cpuset,memset,cpuset,memset,dplacedplaceSGI SGI 集群软件集群软件集群软件集群软件(Array Services)(Array Services)定义和管理集群的配置定义和管理集群的配置,管理运行在集群上的作业集管理运行在集群上的作业集SGI Performance Co-Pilot SGI Performance Co-Pilot:图形化的性能监测工具图形化的性能监测工具SGI FFIO

5、SGI FFIO:对特定对特定I/O I/O 传输的控制传输的控制SGI SGI 科学函数库科学函数库科学函数库科学函数库SCSLSCSL用户使用初步一:用户登录:在windows操作系统下:1.安装xmanager等软件模拟xwindows图形化界面 2.利用ssh-client软件远程登录 在Linux系统下直接使用ssh 命令登录二:上传下载文件:在windows操作系统下:利用ssh-client软件的sftp功能 在Linux系统下直接使用sftp 命令Linux 基本命令:whoami lists your login name whoami lists your login na

6、me ls lists filenames in working directory ls lists filenames in working directory ls-l same list with additional information ls-l same list with additional information ls-l|more if list too long;page down with ls-l|more if list too long;page down with space bar space barcp file1 file2 copies file1

7、to file2(NB:exists cp file1 file2 copies file1 to file2(NB:exists already?)already?)mv file3 file4 file3 is renamed file4 mv file3 file4 file3 is renamed file4 rm file1 discards file1.Clean up from time rm file1 discards file1.Clean up from time to time.to time.mkdir dir1 creates new directory with

8、name mkdir dir1 creates new directory with name dir1 dir1 mv file2 dir1/file2 moves file2 to directory dir1 mv file2 dir1/file2 moves file2 to directory dir1 mv file2 dir1/does precisely the same mv file2 dir1/does precisely the same cd dir1 change working directory to dir1 cd dir1 change working di

9、rectory to dir1 cd.go back(one branch down the tree)cd.go back(one branch down the tree)rmdir dir1 discard dir1(works only when empty)rmdir dir1 discard dir1(works only when empty)pwd lists path to working directory pwd lists path to working directory ps-ef list of activities of computer ps-ef list

10、of activities of computer ps-ef|more if list is too long ps-ef|more if list is too long efc-O2 prog.f-o prog see file Howto.txt for details efc-O2 prog.f-o prog see file Howto.txt for details progoutput1 run program prog;output in file progoutput1 run program prog;output in file output1 output1 prog

11、output1 the same using input file progoutput1 the same using input file named input2 named input2 progoutput1&the same in background progoutput1&the same in background control-c if cursor does not return:kill task control-c if cursor does not return:kill task 编译普通程序:1.how to compile a fortran progra

12、m?efc-O2 tpp2 yourprog.f-o yourprog.out2.how to compile a C program?ecc-O2-tpp2 yourprog.c-o yourprog.out编译并行程序:1.openmp paralleled fortran program efc-O2-tpp2-fpp-openmp yourprog.f-o yourprog.out 2.mpi paralleled fortran program efc-O2-tpp2 yourprog.f-o yourprog.out-lmpi 3.openmp paralleled C progr

13、am ecc-O2-tpp2-openmp yourprog.c-o yourporg.out 运行编译好的普通或运行编译好的普通或OPENMPOPENMP并行程序:并行程序:1.without input:1.without input:./yourprog.out or ./yourprog.out&./yourprog.out or ./yourprog.out&2.with input file:2.with input file:./yourprog.outinput ./yourprog.outinput运行编译好的运行编译好的MPIMPI并行程序:并行程序:mpirun-np 8

14、 yourprog.outinput mpirun-np 8 yourprog.outinput保存输出内容:保存输出内容:./yourprog.outoutputfile&./yourprog.outoutputfile&观察你的程序的运行情况:观察你的程序的运行情况:Top or ps-ef|grep yourlognameTop or ps-ef|grep yourlogname作业调度采用采用PBS proPBS pro作业调度软件对用户提供作业服务,作业调度软件对用户提供作业服务,对用户的作业进行排队管理对用户的作业进行排队管理好处:好处:1.1.为计算资源提供统一的用户界面为计算资

15、源提供统一的用户界面 2.2.极大提高计算资源的利用率极大提高计算资源的利用率 3.3.根据用户或任务分配有限资源根据用户或任务分配有限资源 4.4.减少系统管理的负担减少系统管理的负担管理命令:管理命令:qmgr,qstart,qstopqmgr,qstart,qstop用户命令:用户命令:qstat,qsub,qdelqstat,qsub,qdel提交作业的方法编辑一个作业文件,对作业要求的计算资源作出说明,例如,job_sample:#PBS-N small#PBS l walltime=160:00,mem=100mb,ncpus=4#PBS-m bempirun-np 4/home/wenan/mc2do3/mpimc2do3q.out/home/wenan/mc2do3/outmpi#this sample for a mpi program执行:qsub job_sample q big其中job_sample是作业文件,big是欲提交的作业队列名。查看作业状态:qstat q:列出所有队列的情况 qstat a:列出用户自己的作业的状态

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 教育专区 > 大学资料

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号© 2020-2023 www.taowenge.com 淘文阁