Skip to content

futuregrid/panda

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Panda, a framework co-processing SPMD computation on GPUs and CPUs

	huili@ruijie.com.cn
	Ruijie network co.ltd
	2017.11.09

Title: docs/Co-processing SPMD computation on CPUs and GPUs cluster.pdf

Support apps:

  1. word count
  2. terasort

steps to run word count:
1)cd gpumapreduce
2)make wordcount
3)cd bin
4)mpirun -host node1,node2 -np 2 ./wordcount input.txt

steps to run terasort:
1)cd gpumapreduce
2)make terasort
3)cd bin
4)mpirun -host node1,node2 -np 2 ./teragen 10M /tmp
5)mpirun -host node1,node2 -np 2 ./terasort ./tmp/terasort_in ./tmp/terasort_out