版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、Parallel Performance of Pure MATLAB M-files versus C-code“ as applied to formation of Wide-Bandwidth and Wide-Beamwidth SAR ImageryNehrbass7/14/20221Parallel Performance of Pure MATLAB “M-files” versus “C-code” as applied to formation of Wide-Bandwidth and Wide-Beamwidth SAR ImageryDr. John Nehrbass
2、1Dr. Mehrdad Soumekh2Dr. Stan Ahalt1Dr. Ashok Krishnamurthy1 Dr. Juan Carlos Chaves1 1 Department of Electrical Engineering, The Ohio State University, Columbus, Ohio 43210 2 Deparment of Electrical Engineering, State University of New York at Buffalo, 332 Bonner Hall, Amherst, NY 142607/14/20222Out
3、lineMatlabMPI OverviewPossible modifications/customizationsSAR ImageryParallel Performance “M” vs “C”Future Work and activities7/14/20223MatlabMPI OverviewReferences:/The latest MatlabMPI information, downloads, documentation, and information may be obtained from MatlabMPI7/14/20224MPI & MATLABMessa
4、ge Passing Interface (MPI):A message-passing library specificationSpecific libraries available for almost every kind of HPC platform: shared memory SMPs, clusters, NOWs, Linux, WindowsFortran, C, C+ bindingsWidely accepted standard for parallel computing.MATLAB:Integrated computation, visualization,
5、 programming, and programming environment.Easy matrix based notation, many toolboxes, etcUsed extensively for technical and scientific computingCurrently: mostly SERIAL code7/14/20225What is MatlabMPI?It is a MATLAB implementation of the MPI standards that allows any MATLAB program to exploit multip
6、le processors.It implements, the basic MPI functions that are the core of the MPI point-to-point communications with extensions to other MPI functions. (Growing)MATLAB look and feel on top of standard MATLAB file I/O.Pure M-file implementation: about 100 lines of MATLAB code.It runs anywhere MATLAB
7、runs.Principal developer: Dr. Jeremy Kepner (MIT Lincoln Laboratory)7/14/20226General RequirementsAs MatlabMPI uses file I/O for communication, a common file system must be visible to every machine/processor.On shared memory platforms: single MATLAB license is enough since any user is allowed to lau
8、nch many MATLAB sessions.On distributed memory platforms: one MATLAB license per machine / node. Currently Unix based platforms only, but Windows support coming soon.7/14/20227Basic ConceptsBasic Communication: Messages: MATLAB variables transferred from one processor to another One processor sends
9、the data, another receives the dataSynchronous transfer: call does not return until the message is sent or receivedSPMD model: usually MatlabMPI programs are parallel SPMD programs. The same program is running on different processors/data.7/14/20228Communication architectureReceiver waits until it d
10、etects the existence of the lock file.Receiver deletes the data and lock file, after it loads the variable from the data file.loaddetectSenderVariableData filesavecreateLock fileVariableReceiverShared file system7/14/20229Possible modifications/customizationsssh vs rshPath variablesSystem dependent
11、information required to run MATLAB. 7/14/202210Master scriptsMatlabMPI creates 2 sets of scriptsUnix_Commands.sh master scriptThis contains instructions for launching scripts on each desired node.Unix_Commands.node_alias.sh This contains instructions for “what” is to be run on node_alias.7/14/202211
12、Unix_Commands.ssh examplessh hpc11-1 n cd /work1/nehrbass/D_6_3x6; /bin/sh ./MatMPI/Unix_Commands.hpc11-1.0.sh & &ssh hpc11-3 n cd /work1/nehrbass/D_6_3x6; /bin/sh ./MatMPI/Unix_Commands.hpc11-3.0.sh & &7/14/202212Unix_Commands.hpc11-3.0.ssh example NCPU=6 matlab display null nojvm nosplash MatMPI/m
13、yprog.5.out &touch MatMPI/pid.hpc11-3.$!matlab display null nojvm nosplash MatMPI/myprog.4.out &touch MatMPI/pid.hpc11-3.$!matlab display null nojvm nosplash MatMPI/myprog.3.out &touch MatMPI/pid.hpc11-3.$!matlab display null nojvm nosplash MatMPI/myprog.2.out &touch MatMPI/pid.hpc11-3.$!matlab disp
14、lay null nojvm nosplash MatMPI/myprog.1.out &touch MatMPI/pid.hpc11-3.$!matlab display null nojvm nosplash MatMPI/myprog.0.out &touch MatMPI/pid.hpc11-3.$!# Possibly add code to prevent early batch termination7/14/202213Batch termination problemProblem: Master script finishes before all the spawned
15、processes are done and thus the batch job terminates prematurely.Solution: Add the following code at the end of each node_alias script mystat=ls MatMPI |grep Finished.done|wc lwhile $mystat lt 1 ;do mystat=ls MatMPI |grep Finished.done|wc l sleep 15;done7/14/202214Batch termination problemSolution:
16、create a file called “Finished.done” at any place in the MatlabMPI code when code termination is desired.This file can be created when ever the desired global answer is available, however; it is strongly suggested that a clean termination, (i.e. all processes are finished), be implemented.7/14/20221
17、5Executable ImplementationProblem: There are insufficient licenses when running on a distributed system of n nodes.(Recall each node requires a valid license.)Solution: Convert the working part of the MATLAB code to an executable that can run without a license requirement and modify the existing scr
18、ipts.7/14/202216Implementation Steps1.) Modify the Matlab MPI code so that the scripts are automatically modified to run an executable code.2.) Create an executable code from “M-file” scripts.3.) Run MatlabMPI to generate all the required scripts automatically.4.) Submit a batch job to start the scr
19、ipts. 7/14/202217Script changes 1 Change the script from matlab display null nojvm nosplash MatMPI/myprog.5.out &touch MatMPI/pid.hpc11-3.$!:Tomyprog.exe 5 MatMPI/myprog.5.out &touch MatMPI/pid.hpc11-3.$!:7/14/202218MatlabMPI Changes 1 This is most easily done by editing the file MatMPIChange the li
20、neFrommatlab_command = matlab_command outfile ;To matlab_command = myprog.exe num2str(rank) outfile ;7/14/202219Create an Executable 2Change the “M-file” to a function and add the 3 lines of code below.function dummy=myprogf(my_cpu) % The function myprogf.m was created by converting the % MATLAB “M-
21、file” script myprog.m to this function.% Other comments% Create MatlabMPI setup commandsglobal MPI_COMM_WORLD;load MatMPI/MPI_COMM_WORLD;MPI_COMM_WORLD.rank = my_cpu;% The rest of the code myprog.m is appended without change7/14/202220Executable wrapper 2 #include #include #include “matlab.h”#includ
22、e “multpkg.h”int main( int argc, char *argv) /* Used to call mlfMyprogf */ mxArray *my_cpu; int rank; rank=atoi(argv1); multpkgInitialize(); my_cpu=mlfScalar(rank); mlfMyprogf(my_cpu); multpkgTerminate(); return(0);7/14/202221Generate All Scripts 3Begin MatlabAdd the path of MatlabMPI src ( ie addpa
23、th /MatlabMPI/src )Hint: If the code is having problems seeing the src directory,either copy the src files to a local directory, or add the aboveline inside the source code.Add a machine list as desired(ie machines=;)Run the MatlabMPI code to generate the required scripts.(ie eval(MPI_Run(myprogf,64
24、,machines); ) 7/14/202222Generate All Scripts 3Note that this will automatically launch the codes and scripts and thus this will run interactively.To save all scripts and submit via batch edit the MPI-Run.m function.Comment out the last two lines of this function as% unix(/bin/sh unix_launch_file);%
25、 delete(unix_launch_file);This prevents the code from running from within MATLAB and also saves all the scripts generated by MatlabMPI.7/14/202223Submit to batch 4Dilemma: MatlabMPI generates scripts specific to a list of machines (nodes). Batch only provides machine information when execution start
26、s.It is therefore possible to generate a set of scripts that are not matched to the resources available at run time.A solution to this problem is given on the next few slides. 7/14/202224Submit to batch 4echo “s,w=unix(hostname);” mat_run.mecho “is(s=0)” mat_run.mecho “ machines1=w(1:end-1)” mat_run
27、.mecho “ eval(MPI_Run(myprogf,$NCPU,machines);” mat_run.mecho “end” mat_run.mecho “exit” mat_run.m Run the file “mat_run.m” in MATLAB and capture the outputmatlab nojvm nosplash Recall that this only created the required scripts 7/14/202225Submit to batch 4Run the master script on the correct nodeIf
28、 ($UNAME = “hpc11-0”) then /bin/sh ./MatMPI/Unix_Commands.hpc11-0.0.shendifIf ($UNAME = “hpc11-1”) then /bin/sh ./MatMPI/Unix_Commands.hpc11-1.0.shendifIf ($UNAME = “hpc11-2”) then /bin/sh ./MatMPI/Unix_Commands.hpc11-2.0.shendifIf ($UNAME = “hpc11-3”) then /bin/sh ./MatMPI/Unix_Commands.hpc11-3.0.s
29、hendif7/14/202226MatlabMPI ssh & rshSome UNIX systems require ssh over rsh.To avoid problems with having to enter username / password pairs when launching a script from a master system to be run on other systems do the following:Step 1. Generate new key pairs: ssh-keygen t dsaHit enter when prompted
30、 for a pass phrase7/14/202227MatlabMPI ssh & rshThis creates a public private key pair located in the .ssh directory. The public key (id_dsa.pub) needs to be copied to a common locationStep 2cd /.sshcat id_dsa.pub /.ssh/authorized_keys2chmod 644 /.ssh/authorized_keys2For more information please visi
31、t /Software/ssh7/14/202228MatlabMPI ssh & rshThe HPCMP resources use kerberos. /When forwarding of credentials is used, one may be able to launch scripts on remote systems without implementing the previous steps.On ASC and ARL systems, ssh is sufficient.7/14/202229SAR ImageryVery large phase history
32、 data set are subdivided into 18 files (apertures).Auto focus through each file independent of other files.Inner loop breaks aperture into 4 sub-apertures and performs FFT over each. Signal processing intense.7/14/202230SAR ImageryCalibrateMain loopaperture ( i )Digital SpotlightapertureFFT Sub apertureAdditionalprocessing loop 4 times Final ImageMain loop 18 apertures7/14/202231SAR Imagery12345678910111218 18 apertures 4 sub-apertures 7/14/202232Parallel Performance “M” vs “C” Total time “M code”7/14/202233Total time “C code”7/14/202234Speed up - outer loop “M code”7/14/202235Spee
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2024年工业地产有偿转让协议
- 2024年度南京二手房交易合同
- 2024年度水果交易合同模板
- 【初中生物】病毒教学课件2024-2025学年人教版生物七年级上册
- 2024年度法律服务委托合同
- 2024年度工程监理合同标的及服务内容具体描述
- 2024年工程劳务分包补充协议
- 2024个人向公司借款合同范本(简单版)
- 2024冷却塔填料生产工艺优化合同
- 2024年度CFG桩基工程水土保持合同
- 乡镇医院网络安全应急预案
- 运维知识库管理制度(模板)
- 2023年新华社招聘122人笔试参考题库(共500题)答案详解版
- 2023游戏行业人才报告
- 流行病学的误差和偏倚
- 2023年中级经济师考试真题及答案完整版
- 二年级上册道德与法治10《我们不乱扔》说课稿
- 2023-2024学年高一上学期选科指导主题班会 课件
- Unit4ExploringpoetryExtendedReading公开课课件高中英语牛津译林版(2020)选择性
- 天线技术在智能电网通信系统中的关键技术研究-第2篇
- 急诊科护士培训计划(6篇)
评论
0/150
提交评论