1 / 10

Parallel Matlab

Parallel Matlab. Vikas Argod Research Computing and Cyberinfrastructure vikasargod@psu.edu. Matlab in Parallel. Beautifully parallel. Message Passing. e.g., Multi, paralize, Plab, ParMatlab. e.g., MultiMatlab, CMTM, DPToolbox,MatlabMPI, pMatlab.

annalise
Télécharger la présentation

Parallel Matlab

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Parallel Matlab Vikas Argod Research Computing and Cyberinfrastructure vikasargod@psu.edu

  2. Matlab in Parallel Beautifully parallel Message Passing e.g., Multi, paralize, Plab, ParMatlab e.g., MultiMatlab, CMTM, DPToolbox,MatlabMPI, pMatlab www-math.mit.edu/~edelman/homepage/papers/pmatlab.pdf

  3. Parallel Computing Toolbox (PCT) • Data and task parallelism using • Parallel-for loops • Distributed arrays • Parallel numerical algorithms • Message Passing functions • Easy transition between serial and parallel http://www.mathworks.com/products/parallel-computing/description1.html

  4. Distributed Computing Server (DCS) • Parallel Computing Toolbox • Only four local workers on a multicore or multiprocessor computer • PCT + DCS -> Cluster-based applications • Coordinate and execute independent MATLAB operations simultaneously on a cluster of computers

  5. Architecture of PCT Coordinates the execution of jobs and the evaluation of their tasks, distributes the tasks for evaluation to the individual Matlab sessions called workers Normal Matlab session in which the job and its tasks are defined by using the functions provided by PCT. Often, it is on the machine where user programs Matlab. Matlab sessions which evaluates the task distributed by scheduler

  6. Example -Problem Description • System of 2^6 (=64) square matrices • Each matrix  Sparse, square,2^17 (=131072) dimension • Matrix is generated by ‘spdiags’ using a ‘random’ array • To extract first 100 eigenvectors • ‘eigs’ function is used • See handout for the code • Each matrix calculation is distributed

  7. Example - Serial Matlab • ‘eigen’ is a function • Input : (vector of random numbers, dimension of the matrix) • Output : eigenvectors n = 2^16; p = 2^7; e = rand (n,1,p); for i = 1 : p a = e(:,:,i); ans(i) = eigen(a,n); end Independent calculations

  8. Example-Parallel Matlab • Find available distributed computing resources (findResource function)nprocs = [ getenv('DMATLAB_NPROCS') ] np = sscanf( nprocs, '%d' ) mgr_name = [ getenv('JOBMANAGER') ] mgr_host = [ getenv('JOBMANAGERHOST') ]jm =findResource('jobmanager','Name',mgr_name,'LookupURL',mgr_host); 2. Create distributed job j = createJob(jm,'FileDependencies',{<path>}); Path to additional files

  9. Example – Parallel Matlab • Create Tasks for each worker n = 2^16; p = 2^7; e = rand (n,1,p); for i = 1 : p a = e(:,:,i); createTask(j, @eigen, 1, {a,n}); end Same as Serial Code Creating tasks Name of the job Input arguments to each task Number of output arguments Parallel Task function

  10. Example – Parallel Matlab 4. Submit the job and wait for the results 5. Remove the individual task or parent job objectdestroy(j); If there are M tasks created and each task has N output arguments, then ‘results’ is a MxN cell array submit(j); get(jm); waitForState(j); results = getAllOutputArguments(j)

More Related