2本提出予定 (雁瀬君ACS論文誌+Wikipedia の実験、西井君+雁瀬君のインクリメンタルグラフ処理)
http://www2012.org/
November 1st, 2011 Abstracts for papers due
November 7th, 2011 Papers due
January 30th, 2012 Paper notifications out
gnuplotでeps
12 年前
IBM Research / University College Dublin / 東京工業大学情報理工学研究科計算工学専攻
#!/bin/bash
if [ $# -eq 1 ];
then
DIR=$1
else
DIR=results
fi
if [ ! -e $DIR ];
then
mkdir $DIR
fi
# sc02 の場合
VMLINUX=/usr/lib/debug/lib/modules/2.6.18-92.el5/vmlinux
#opcontrol --setup --no-vmlinux
opcontrol --setup
opcontrol --shutdown
opcontrol --setup --vmlinux=$VMLINUX
opcontrol --reset
opcontrol --separate=none
opcontrol --event=default
## opcontrol --event=PM_INST_CMPL_GRP1:100000:0:1:1 --event=PM_RUN_CYC_GRP1:100000:0:1:1 --event=PM_INST_DISP_GRP1:100000:0:1:1
opcontrol --start
sleep 30
opcontrol --shutdown
opreport > $DIR/cycle.out
opreport -l > $DIR/cycle_l.out
#opreport --callgraph > $DIR/callgraph.out
#opreport --symbols > $DIR/symbols.out
opcontrol --reset