!!! This package require MPI Library. !!!

<<build>>
   OpenMPI or MPICH2
       R CMD INSTALL Rhpc_0.yy-yday.tar.gz

   other MPI *nix.
       R CMD INSTALL Rhpc_0.yy-yday.tar.gz \
          --configure-args='--with-mpi-cflags=-I/opt/FJSVplang/include64/mpi/fujitsu \
                            --with-mpi-ldflags="-lmpi_f -lfjgmp64 -L/opt/FJSVpnple/lib -ljrm -L/opt/FJSVpnidt/lib -lfjidt -L/opt/FJSVplang/lib64 -lfj90i -lfj90f -lelf -lm -lpthread -lrt -ldl"'
       
   MS-MPI for Windows
       require set MSMPI environment variable

       c.f. Default install MS-MPI v6
       C:\Users\boofoo>set MSMPI
       MSMPI_INC=C:\Program Files (x86)\Microsoft SDKs\MPI\Include\
       MSMPI_LIB32=C:\Program Files (x86)\Microsoft SDKs\MPI\Lib\x86\
       MSMPI_LIB64=C:\Program Files (x86)\Microsoft SDKs\MPI\Lib\x64\

<<program launch>>

  <*nix OS's>
   Generated in the package top directory, please use the Rhpc shell.

   ex.
     $ mpirun -n 4 ~/R/x86_64-unknown-linux-gnu-library/3.2/Rhpc/Rhpc CMD BATCH -q --no-save test.R

   MPI_Comm_Spawn if available,
   ex.
     $ R -q
     > library(Rhpc)
     > Rhpc_initialize()
     > cl<-Rhpc_getHandle(4)    # set number of workers
     > Rhpc_worker_call(cl,Sys.getpid)
     [[1]]
     [1] 10571
     
     [[2]]
     [1] 10572
     
     [[3]]
     [1] 10573
     
     [[4]]
     [1] 10574
     
     > Rhpc_finalize()
     > q("no")
   

  <MS-Windows>
     please get and install MS-MPI
     http://www.microsoft.com/en-us/download/details.aspx?id=47259
  
     
     Installed in the package top directory, please look and use the Rhpc*.cmd shell.

     ex. lunch Rgui(x64)
       Click %USERPROFILE%\Documents\R\win-binary\3.2\Rhpc\RhpcWin64.cmd
     follow input 
     > library(Rhpc)
     > Rhpc_initialize()
     > cl<-Rhpc_getHandle()
     > Rhpc_worker_call(cl,Sys.getpid)
     > Rhpc_finalize()
     > q("no")
     
     ex. lunch batch(x64)
     C:> %USERPROFILE%\Documents\R\win-binary\3.2\Rhpc\Rhpc64.cmd BATCH test.R

