This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.PHONY: all fpmpi | |
all: $(SHLIB) | |
$(SHLIB): fpmpi | |
fpmpi: | |
(cd pbdPROF/fpmpi; make) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
./build_pdf.sh | |
rm: cannot remove `*.aux': No such file or directory | |
rm: cannot remove `*.bbl': No such file or directory | |
rm: cannot remove `*.blg': No such file or directory | |
rm: cannot remove `*.log': No such file or directory | |
rm: cannot remove `*.out': No such file or directory | |
rm: cannot remove `*.toc': No such file or directory | |
This is pdfTeX, Version 3.1415926-1.40.10 (TeX Live 2009/Debian) | |
entering extended mode | |
(./pbdPROF-guide.Rnw |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
g@G:~/Documents/pbd/pbdDEMO/demo$ mpiexec -np 2 Rscript quantile.r | |
Loading required package: DBI | |
Loading required package: DBI | |
Loading required package: gsubfn | |
Loading required package: gsubfn | |
Loading required package: proto | |
Loading required package: proto | |
Loading required namespace: tcltk | |
Loading required namespace: tcltk | |
Loading Tcl/Tk interface ... Loading Tcl/Tk interface ... done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
g@G:~/Documents/pbd$ sudo R CMD INSTALL Rmpi_PROF \ | |
> --configure-args=" \ | |
> --with-Rmpi-include=/usr/lib/openmpi/include \ | |
> --with-Rmpi-libpath=/usr/lib/openmpi/lib \ | |
> --with-Rmpi-type=OPENMPI \ | |
> --enable-pbdPROF" | |
* installing to library ‘/home/g/R/x86_64-pc-linux-gnu-library/2.15’ | |
* installing *source* package ‘Rmpi’ ... | |
checking for gcc... gcc -std=gnu99 | |
checking whether the C compiler works... yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
g@G:~/Documents/pbd$ sudo R CMD INSTALL Rmpi_PROF | |
* installing to library ‘/home/g/R/x86_64-pc-linux-gnu-library/2.15’ | |
* installing *source* package ‘Rmpi’ ... | |
checking for gcc... gcc -std=gnu99 | |
checking whether the C compiler works... yes | |
checking for C compiler default output file name... a.out | |
checking for suffix of executables... | |
checking whether we are cross compiling... no | |
checking for suffix of object files... o | |
checking whether we are using the GNU C compiler... yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
g@G:~/Documents/pbd$ R CMD INSTALL Rmpi_PROF | |
* installing to library ‘/home/g/R/x86_64-pc-linux-gnu-library/2.15’ | |
* installing *source* package ‘Rmpi’ ... | |
mv: cannot move `/home/g/R/x86_64-pc-linux-gnu-library/2.15/Rmpi' to `/home/g/R/x86_64-pc-linux-gnu-library/2.15/00LOCK-Rmpi_PROF/Rmpi': Permission denied | |
checking for gcc... gcc -std=gnu99 | |
checking whether the C compiler works... yes | |
checking for C compiler default output file name... a.out | |
checking for suffix of executables... | |
checking whether we are cross compiling... no | |
checking for suffix of object files... o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
g@G:~/Documents/pbd$ sudo R CMD INSTALL Rmpi_PROF --configure-args="--enable-pbdPROF" | |
* installing to library ‘/home/g/R/x86_64-pc-linux-gnu-library/2.15’ | |
* installing *source* package ‘Rmpi’ ... | |
checking for gcc... gcc -std=gnu99 | |
checking whether the C compiler works... yes | |
checking for C compiler default output file name... a.out | |
checking for suffix of executables... | |
checking whether we are cross compiling... no | |
checking for suffix of object files... o | |
checking whether we are using the GNU C compiler... yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ mpiP | |
@ Command : /home/snoweye/work-my/local/R-devel/lib/R/bin/exec/R --slave --no-restore --file=allreduce.r --args | |
@ Version : 3.3.0 | |
@ MPIP Build date : Jul 18 2013, 16:36:20 | |
@ Start time : 2013 07 18 16:50:32 | |
@ Stop time : 2013 07 18 16:50:32 | |
@ Timer Used : PMPI_Wtime | |
@ MPIP env var : [null] | |
@ Collector Rank : 0 | |
@ Collector PID : 24033 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
public class Main { | |
public static void main(String args[]){ | |
//upper limit for n and k are 2^33 -1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.company; | |
import java.util.Scanner; | |
/** | |
* Created with IntelliJ IDEA. | |
* User: g | |
* Date: 8/5/13 | |
* Time: 7:18 AM | |
* To change this template use File | Settings | File Templates. |
OlderNewer