Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 761 Bytes

README.md

File metadata and controls

25 lines (22 loc) · 761 Bytes

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