[Assorted-commits] SF.net SVN: assorted: [641] hash-join/trunk/src
Brought to you by:
yangzhang
From: <yan...@us...> - 2008-03-23 22:36:31
|
Revision: 641 http://assorted.svn.sourceforge.net/assorted/?rev=641&view=rev Author: yangzhang Date: 2008-03-23 15:36:31 -0700 (Sun, 23 Mar 2008) Log Message: ----------- added a tile64 runner and makefile Added Paths: ----------- hash-join/trunk/src/run.bash hash-join/trunk/src/tile64.mk Added: hash-join/trunk/src/run.bash =================================================================== --- hash-join/trunk/src/run.bash (rev 0) +++ hash-join/trunk/src/run.bash 2008-03-23 22:36:31 UTC (rev 641) @@ -0,0 +1,20 @@ +#!/usr/bin/env bash + +# This is for running on the TILE64. + +set -o errexit -o nounset + +make -s + +run() { + local n="$1" + time tile-monitor --batch-mode --pci \ + --upload data/actresses.dat actresses.dat \ + --upload data/movies.dat movies.dat \ + --upload out/hashjoin hashjoin \ + --run - hashjoin $n movies.dat actresses.dat - +} + +for n in 1 8 16 32 48 56 +do run $n +done | tee log Property changes on: hash-join/trunk/src/run.bash ___________________________________________________________________ Name: svn:executable + * Added: hash-join/trunk/src/tile64.mk =================================================================== --- hash-join/trunk/src/tile64.mk (rev 0) +++ hash-join/trunk/src/tile64.mk 2008-03-23 22:36:31 UTC (rev 641) @@ -0,0 +1,3 @@ +out/hashjoin: hashjoin.cc + mkdir -p out + tile-c++ -O3 -DTILE64 -I ~/ccom/src/ -I ~/boost_1_34_1/ -o out/hashjoin -lpthread hashjoin.cc This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |