Changes between Version 4 and Version 5 of jazz/mpdboot


Ignore:
Timestamp:
Jul 2, 2008, 11:36:32 AM (16 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/mpdboot

    v4 v5  
    4949> EOF
    5050}}}
    51  * run '''mpdboot''' for 7 nodes and use '''mpdtrace''' to check the status of mpd process on each compute node. '''mpdringtest''' can test the speed of message passing.
     51 * run '''mpdboot''' for 7 nodes and use '''mpdtrace''' to check the status of mpd process on each compute node. '''mpdringtest''' can test the speed of message passing. '''mpdallexit''' to terminate all mpd processes.
    5252{{{
    5353jazz@bio-cluster-12:~$ mpdboot -n 7
     
    6262jazz@bio-cluster-12:~$ mpdringtest 100
    6363time for 100 loops = 0.0729811191559 seconds
     64jazz@bio-cluster-12:~$ mpdallexit
    6465}}}
    6566
    66 == Test 1: Run mpd in local host ==
     67== Test 1: single mpd and R-MPI in localhost ==
     68
     69 * run mpd in localhost
     70{{{
     71jazz@bio-cluster-12:~$ mpd &
     72[1] 1505
     73jazz@bio-cluster-12:~$ mpdtrace -l
     74bio-cluster-12_37007 (10.220.202.219)
     75}}}
     76 * run R-MPI with single mpd in localhost
     77{{{
     78jazz@bio-cluster-12:~$ R
     79
     80R version 2.4.0 Patched (2006-11-25 r39997)
     81Copyright (C) 2006 The R Foundation for Statistical Computing
     82ISBN 3-900051-07-0
     83
     84> library(Rmpi)
     85> mpi.spawn.Rslaves()
     86        1 slaves are spawned successfully. 0 failed.
     87master (rank 0, comm 1) of size 2 is running on: bio-cluster-12
     88slave1 (rank 1, comm 1) of size 2 is running on: bio-cluster-12
     89> mpi.close.Rslaves()
     90mpi.close.Rslaves()
     91[1] 1
     92> mpi.quit(save="no")
     93mpi.quit(save="no")
     94jazz@bio-cluster-12:~$
     95}}}