Thread: [complement-svn] SF.net SVN: complement: [1336] trunk/explore/perf/stem
Status: Pre-Alpha
Brought to you by:
complement
From: <com...@us...> - 2006-10-17 16:17:09
|
Revision: 1336 http://svn.sourceforge.net/complement/?rev=1336&view=rev Author: complement Date: 2006-10-17 09:16:54 -0700 (Tue, 17 Oct 2006) Log Message: ----------- test infrastructure Modified Paths: -------------- trunk/explore/perf/stem/stemload/stemload.cc Added Paths: ----------- trunk/explore/perf/stem/Makefile trunk/explore/perf/stem/stemload.gplot Removed Paths: ------------- trunk/explore/perf/stem/stemload/stemload.gplot Property Changed: ---------------- trunk/explore/perf/stem/stemload/ Added: trunk/explore/perf/stem/Makefile =================================================================== --- trunk/explore/perf/stem/Makefile (rev 0) +++ trunk/explore/perf/stem/Makefile 2006-10-17 16:16:54 UTC (rev 1336) @@ -0,0 +1,36 @@ +# -*- Makefile -*- Time-stamp: <05/12/27 00:00:15 ptr> + +DIRS := stemecho stemload +timeprog := ../../app/utils/time/obj/gcc/so/time + +all: + for d in $(DIRS); do \ + (cd $$d; ${MAKE} release-shared); \ + done + +depend: + for d in $(DIRS); do \ + (cd $$d; ${MAKE} depend); \ + done + +clean: + for d in $(DIRS); do \ + (cd $$d; ${MAKE} clean); \ + done + rm -rf stemload/log + +clobber: + for d in $(DIRS); do \ + (cd $$d; ${MAKE} clobber); \ + done + rm -rf stemload/log + +test: + (cd stemecho; ../${timeprog} -o ../echo.dat obj/gcc/so/stemecho 2>/dev/null &) + (cd stemload; rm -rf log; mkdir log; ../${timeprog} -o ../load.dat obj/gcc/so/stemload) + pkill -TERM stemecho + cat stemload/log/*_log.* | sort -n -k 2 | awk 'BEGIN { m = 0.0 } { if ( NR == 1 ) { m = $$2; }; print $$1, $$2 - m, $$3; }' > load.log + awk 'BEGIN {i1 = 0.0; n = 0; sq1 = 0; dt = 30.0; t0 = 0.0; } { if ( ($$2 - t0) > dt ) { print t0 + 0.5 * dt, (i1 / n), sqrt((sq1 - (i1^2)/n ) / n); t0 += dt; i1 = $$3; n = 1; sq1 = $$3^2; } else { i1 += $$3; ++n; sq1 += $$3^2; }; } END {print t0 + 0.5 * dt, (i1 / n), sqrt((sq1 - (i1^2)/n ) / n); t0 += dt; }' load.log > stat.dat + +.PHONY: all depend clean clobber test + Property changes on: trunk/explore/perf/stem/stemload ___________________________________________________________________ Name: svn:ignore - obj core + obj core log Modified: trunk/explore/perf/stem/stemload/stemload.cc =================================================================== --- trunk/explore/perf/stem/stemload/stemload.cc 2006-10-17 09:22:10 UTC (rev 1335) +++ trunk/explore/perf/stem/stemload/stemload.cc 2006-10-17 16:16:54 UTC (rev 1336) @@ -24,23 +24,33 @@ void echo( const stem::Event& ); void loop(); + static Mutex thcount_lock; + static int thcount; + static Condition last; + private: NetTransportMgr echosrv; addr_type echo_addr; ofstream timing; int n; + int lcount; DECLARE_RESPONSE_TABLE( Simulator, stem::EventHandler ); }; +Mutex Simulator::thcount_lock; +int Simulator::thcount = 0; +Condition Simulator::last; + Simulator::Simulator( int i ) : - n( i ) + n( i ), + lcount( 300 ) { echo_addr = echosrv.open( "localhost", 6995 ); stringstream s; - s << "stemload_log." << i; + s << "log/stemload_log." << i; timing.open( s.str().c_str() ); } @@ -55,7 +65,7 @@ unsigned sand = 0; - while ( true ) { + while ( lcount-- > 0 ) { Event ev( 0x5000 ); ev.dest( echo_addr ); @@ -108,27 +118,40 @@ Thread::ret_code client_thread( void *p ) { + Simulator::thcount_lock.lock(); + ++Simulator::thcount; + Simulator::thcount_lock.unlock(); + + Thread::ret_code rc; + rc.iword = 0; + Simulator simulator( (int)p ); simulator.loop(); + + Simulator::thcount_lock.lock(); + if ( --Simulator::thcount == 0 ) { + Simulator::last.set( true ); + } + Simulator::thcount_lock.unlock(); + + return rc; } int main() { - Condition cnd; - - cnd.set( false ); + Simulator::last.set( false ); timespec tm; tm.tv_sec = 0; tm.tv_nsec = 100000000; - for ( int i = 0; i < 1000; ++i ) { - new Thread( client_thread, (void *)i, 0, 0, PTHREAD_STACK_MIN * 2 ); + for ( int i = 0; i < 400; ++i ) { + new Thread( client_thread, (void *)i, 0, Thread::detached, PTHREAD_STACK_MIN * 2 ); Thread::delay( &tm ); } - cnd.wait(); + Simulator::last.try_wait(); return 0; } Deleted: trunk/explore/perf/stem/stemload/stemload.gplot =================================================================== --- trunk/explore/perf/stem/stemload/stemload.gplot 2006-10-17 09:22:10 UTC (rev 1335) +++ trunk/explore/perf/stem/stemload/stemload.gplot 2006-10-17 16:16:54 UTC (rev 1336) @@ -1,4 +0,0 @@ -#!/usr/bin/env gnuplot - -plot 'stemload.log' using ($2 - 1158855155.402390):($3) w d -pause (-1) Copied: trunk/explore/perf/stem/stemload.gplot (from rev 1319, trunk/explore/perf/stem/stemload/stemload.gplot) =================================================================== --- trunk/explore/perf/stem/stemload.gplot (rev 0) +++ trunk/explore/perf/stem/stemload.gplot 2006-10-17 16:16:54 UTC (rev 1336) @@ -0,0 +1,7 @@ +#!/usr/bin/env gnuplot + +set logscale y +plot 'load.log' using ($2):($3) w d lt 1, \ + 'stat.dat' using ($1):($2) w l lt 2, \ + 'stat.dat' using ($1):($2):($3) w yerrorbars lt 2 +pause (-1) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <com...@us...> - 2006-10-18 10:50:01
|
Revision: 1338 http://svn.sourceforge.net/complement/?rev=1338&view=rev Author: complement Date: 2006-10-18 03:49:50 -0700 (Wed, 18 Oct 2006) Log Message: ----------- add connections per sec Modified Paths: -------------- trunk/explore/perf/stem/Makefile trunk/explore/perf/stem/stemload.gplot Modified: trunk/explore/perf/stem/Makefile =================================================================== --- trunk/explore/perf/stem/Makefile 2006-10-18 10:49:05 UTC (rev 1337) +++ trunk/explore/perf/stem/Makefile 2006-10-18 10:49:50 UTC (rev 1338) @@ -30,7 +30,7 @@ (cd stemload; rm -rf log; mkdir log; ../${timeprog} -o ../load.dat obj/gcc/so/stemload) pkill -TERM stemecho cat stemload/log/*_log.* | sort -n -k 2 | awk 'BEGIN { m = 0.0 } { if ( NR == 1 ) { m = $$2; }; print $$1, $$2 - m, $$3; }' > load.log - awk 'BEGIN {i1 = 0.0; n = 0; sq1 = 0; dt = 30.0; t0 = 0.0; } { if ( ($$2 - t0) > dt ) { print t0 + 0.5 * dt, (i1 / n), sqrt((sq1 - (i1^2)/n ) / n); t0 += dt; i1 = $$3; n = 1; sq1 = $$3^2; } else { i1 += $$3; ++n; sq1 += $$3^2; }; } END {print t0 + 0.5 * dt, (i1 / n), sqrt((sq1 - (i1^2)/n ) / n); t0 += dt; }' load.log > stat.dat + awk 'BEGIN {i1 = 0.0; n = 0; sq1 = 0; dt = 60.0; t0 = 0.0; } { if ( ($$2 - t0) > dt ) { print t0 + 0.5 * dt, (i1 / n), sqrt((sq1 - (i1^2)/n ) / n), n / dt; t0 += dt; i1 = $$3; n = 1; sq1 = $$3^2; } else { i1 += $$3; ++n; sq1 += $$3^2; }; } END {print t0 + 0.5 * dt, (i1 / n), sqrt((sq1 - (i1^2)/n ) / n), n / dt; }' load.log > stat.dat .PHONY: all depend clean clobber test Modified: trunk/explore/perf/stem/stemload.gplot =================================================================== --- trunk/explore/perf/stem/stemload.gplot 2006-10-18 10:49:05 UTC (rev 1337) +++ trunk/explore/perf/stem/stemload.gplot 2006-10-18 10:49:50 UTC (rev 1338) @@ -1,7 +1,17 @@ #!/usr/bin/env gnuplot +set xlabel "$t$, sec" +set ylabel "$\Delta t$, sec" + set logscale y -plot 'load.log' using ($2):($3) w d lt 1, \ - 'stat.dat' using ($1):($2) w l lt 2, \ - 'stat.dat' using ($1):($2):($3) w yerrorbars lt 2 +plot 'load.log' using ($2):($3) w d lt 2, \ + 'stat.dat' using ($1):($2) w l lt 4, \ + 'stat.dat' using ($1):($2):($3) w yerrorbars lt 4 pause (-1) + +unset logscale +set ylabel "messeges, sec$^{-1}$" +plot 'stat.dat' using ($1):($4) w l + +pause (-1) + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <com...@us...> - 2006-10-18 12:31:17
|
Revision: 1343 http://svn.sourceforge.net/complement/?rev=1343&view=rev Author: complement Date: 2006-10-18 05:31:01 -0700 (Wed, 18 Oct 2006) Log Message: ----------- scheme of test Added Paths: ----------- trunk/explore/perf/stem/test_scheme.fig trunk/explore/perf/stem/test_scheme.png trunk/explore/perf/stem/test_time_scheme.fig trunk/explore/perf/stem/test_time_scheme.png Added: trunk/explore/perf/stem/test_scheme.fig =================================================================== --- trunk/explore/perf/stem/test_scheme.fig (rev 0) +++ trunk/explore/perf/stem/test_scheme.fig 2006-10-18 12:31:01 UTC (rev 1343) @@ -0,0 +1,49 @@ +#FIG 3.2 Produced by xfig version 3.2.5-alpha5 +Landscape +Center +Inches +Letter +100.00 +Single +-2 +1200 2 +6 3450 300 5400 1350 +1 1 0 1 0 7 50 -1 -1 0.000 1 0.0000 4425 825 975 525 4425 825 5400 1350 +4 1 0 50 -1 20 10 0.0000 4 135 990 4425 825 Echo Client\001 +-6 +6 3450 3300 5400 4350 +1 1 0 1 0 7 50 -1 -1 0.000 1 0.0000 4425 3825 975 525 4425 3825 5400 4350 +4 1 0 50 -1 20 10 0.0000 4 135 990 4425 3825 Echo Client\001 +-6 +6 3450 1800 5400 2850 +1 1 0 1 0 7 50 -1 -1 0.000 1 0.0000 4425 2325 975 525 4425 2325 5400 2850 +4 1 0 50 -1 20 10 0.0000 4 135 990 4425 2325 Echo Client\001 +-6 +6 375 1800 2175 3000 +1 1 0 1 0 7 50 -1 -1 0.000 1 0.0000 1275 2400 900 600 1275 2400 2175 3000 +4 1 0 50 -1 20 10 0.0000 4 135 990 1275 2475 Echo Server\001 +-6 +3 2 0 1 0 7 50 -1 -1 0.000 0 1 0 3 + 0 0 1.00 60.00 120.00 + 3450 750 2250 1050 1425 1950 + 0.000 -1.000 0.000 +3 2 0 1 0 7 50 -1 -1 0.000 0 1 0 3 + 0 0 1.00 60.00 120.00 + 1575 1950 2700 1650 3525 1050 + 0.000 -1.000 0.000 +3 2 0 1 0 7 50 -1 -1 0.000 0 1 0 3 + 0 0 1.00 60.00 120.00 + 3525 2100 2775 2100 1950 2250 + 0.000 -1.000 0.000 +3 2 0 1 0 7 50 -1 -1 0.000 0 1 0 3 + 0 0 1.00 60.00 120.00 + 2025 2325 2850 2400 3450 2325 + 0.000 -1.000 0.000 +3 2 0 1 0 7 50 -1 -1 0.000 0 1 0 3 + 0 0 1.00 60.00 120.00 + 3675 3525 2700 3075 1650 2700 + 0.000 -1.000 0.000 +3 2 0 1 0 7 50 -1 -1 0.000 0 1 0 3 + 0 0 1.00 60.00 120.00 + 1500 2775 2325 3600 3600 3750 + 0.000 -1.000 0.000 Added: trunk/explore/perf/stem/test_scheme.png =================================================================== (Binary files differ) Property changes on: trunk/explore/perf/stem/test_scheme.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/explore/perf/stem/test_time_scheme.fig =================================================================== --- trunk/explore/perf/stem/test_time_scheme.fig (rev 0) +++ trunk/explore/perf/stem/test_time_scheme.fig 2006-10-18 12:31:01 UTC (rev 1343) @@ -0,0 +1,60 @@ +#FIG 3.2 Produced by xfig version 3.2.5-alpha5 +Landscape +Center +Inches +Letter +100.00 +Single +-2 +1200 2 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2 + 0 0 1.00 60.00 120.00 + 1200 900 1200 4800 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2 + 0 0 1.00 60.00 120.00 + 4275 900 4275 4800 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2 + 0 0 1.00 60.00 120.00 + 4275 1425 1200 1875 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2 + 0 0 1.00 60.00 120.00 + 4275 1950 1200 2475 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2 + 0 0 1.00 60.00 120.00 + 1200 2700 4275 3150 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2 + 0 0 1.00 60.00 120.00 + 1200 3600 4275 4125 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2 + 4275 1425 4575 1425 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2 + 4275 1950 4575 1950 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2 + 4275 4125 4575 4125 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 1 2 + 0 0 1.00 60.00 120.00 + 0 0 1.00 60.00 120.00 + 4575 1425 4575 1950 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 1 2 + 0 0 1.00 60.00 120.00 + 0 0 1.00 60.00 120.00 + 4575 1950 4575 4125 +3 2 0 1 0 7 50 -1 -1 0.000 0 1 0 3 + 0 0 1.00 60.00 120.00 + 1200 1875 750 2250 1200 2700 + 0.000 -1.000 0.000 +3 2 0 1 0 7 50 -1 -1 0.000 0 1 0 3 + 0 0 1.00 60.00 120.00 + 1200 2475 750 3075 1200 3600 + 0.000 -1.000 0.000 +4 1 0 50 -1 20 10 0.0000 4 135 990 1200 600 Echo Server\001 +4 1 0 50 -1 20 10 0.0000 4 135 990 4275 600 Echo Client\001 +4 1 0 50 -1 20 10 0.0000 4 165 900 2625 1350 Message #1\001 +4 1 0 50 -1 20 10 0.0000 4 165 900 2625 2025 Message #2\001 +4 1 0 50 -1 20 10 0.0000 4 165 900 2925 2775 Message #1\001 +4 1 0 50 -1 20 10 0.0000 4 165 900 2925 3675 Message #2\001 +4 1 0 50 -1 20 10 0.0000 4 120 90 1425 4650 t\001 +4 1 0 50 -1 20 10 0.0000 4 120 90 4500 4650 t\001 +4 0 0 50 -1 20 10 0.0000 4 165 1080 4800 1575 Random delay\001 +4 0 0 50 -1 20 10 0.0000 4 135 990 4800 1875 Random size\001 +4 0 0 50 -1 20 10 0.0000 4 165 1170 4875 3075 Delivery time\001 Added: trunk/explore/perf/stem/test_time_scheme.png =================================================================== (Binary files differ) Property changes on: trunk/explore/perf/stem/test_time_scheme.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <com...@us...> - 2006-10-18 13:00:37
|
Revision: 1344 http://svn.sourceforge.net/complement/?rev=1344&view=rev Author: complement Date: 2006-10-18 06:00:25 -0700 (Wed, 18 Oct 2006) Log Message: ----------- pictures; AMD Opteron(tm) Processor 252, 2590.665 MHz, x2 Modified Paths: -------------- trunk/explore/perf/stem/stemload.gplot Added Paths: ----------- trunk/explore/perf/stem/delivery.png trunk/explore/perf/stem/processed.png Added: trunk/explore/perf/stem/delivery.png =================================================================== (Binary files differ) Property changes on: trunk/explore/perf/stem/delivery.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/explore/perf/stem/processed.png =================================================================== (Binary files differ) Property changes on: trunk/explore/perf/stem/processed.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: trunk/explore/perf/stem/stemload.gplot =================================================================== --- trunk/explore/perf/stem/stemload.gplot 2006-10-18 12:31:01 UTC (rev 1343) +++ trunk/explore/perf/stem/stemload.gplot 2006-10-18 13:00:25 UTC (rev 1344) @@ -1,17 +1,24 @@ #!/usr/bin/env gnuplot +set terminal png + set xlabel "$t$, sec" set ylabel "$\Delta t$, sec" set logscale y +set output "delivery.png" + plot 'load.log' using ($2):($3) w d lt 2, \ 'stat.dat' using ($1):($2) w l lt 4, \ 'stat.dat' using ($1):($2):($3) w yerrorbars lt 4 -pause (-1) +# pause (-1) unset logscale set ylabel "messeges, sec$^{-1}$" + +set output "processed.png" + plot 'stat.dat' using ($1):($4) w l -pause (-1) +#pause (-1) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <com...@us...> - 2006-11-01 12:40:04
|
Revision: 1353 http://svn.sourceforge.net/complement/?rev=1353&view=rev Author: complement Date: 2006-11-01 04:39:44 -0800 (Wed, 01 Nov 2006) Log Message: ----------- shades rlimit Added Paths: ----------- trunk/explore/perf/stem/rlimit/ trunk/explore/perf/stem/rlimit/Makefile trunk/explore/perf/stem/rlimit/Makefile.inc trunk/explore/perf/stem/rlimit/fdlimit.c Property changes on: trunk/explore/perf/stem/rlimit ___________________________________________________________________ Name: svn:ignore + obj Added: trunk/explore/perf/stem/rlimit/Makefile =================================================================== --- trunk/explore/perf/stem/rlimit/Makefile (rev 0) +++ trunk/explore/perf/stem/rlimit/Makefile 2006-11-01 12:39:44 UTC (rev 1353) @@ -0,0 +1,14 @@ +# -*- Makefile -*- Time-stamp: <04/01/09 16:53:50 ptr> + +SRCROOT := ../../.. +COMPILER_NAME := gcc + +include Makefile.inc +include ${SRCROOT}/Makefiles/top.mak + +INCLUDES += -I${CoMT_INCLUDE_DIR} +LDSEARCH += -L${CoMT_LIB_DIR} + +release-shared : LDFLAGS += -Wl,-rpath=${STLPORT_LIB_DIR}:${PWD}/${CoMT_LIB_DIR} -lxmt -lsockios -lstem +dbg-shared : LDFLAGS += -Wl,-rpath=${STLPORT_LIB_DIR}:${PWD}/${CoMT_LIB_DIR} -lxmtg -lsockiosg -lstemg +stldbg-shared : LDFLAGS += -Wl,-rpath=${STLPORT_LIB_DIR}:${PWD}/${CoMT_LIB_DIR} -lxmtstlg -lsockiosstlg -lstemstlg Added: trunk/explore/perf/stem/rlimit/Makefile.inc =================================================================== --- trunk/explore/perf/stem/rlimit/Makefile.inc (rev 0) +++ trunk/explore/perf/stem/rlimit/Makefile.inc 2006-11-01 12:39:44 UTC (rev 1353) @@ -0,0 +1,4 @@ +# -*- makefile -*- Time-stamp: <04/01/12 15:37:40 ptr> + +PRGNAME = fdlimit +SRC_C = fdlimit.c Added: trunk/explore/perf/stem/rlimit/fdlimit.c =================================================================== --- trunk/explore/perf/stem/rlimit/fdlimit.c (rev 0) +++ trunk/explore/perf/stem/rlimit/fdlimit.c 2006-11-01 12:39:44 UTC (rev 1353) @@ -0,0 +1,44 @@ +#include "stdio.h" +#include "stdlib.h" +#include "string.h" +#include "errno.h" +#include "sys/resource.h" + +int main (int argc, char *argv[]) +{ + if (argc != 2) + { + printf ("usage: fdlimit new-limit\n" + "$ ./fdlimit 100\n"); + exit (1); + } + struct rlimit rlp; + int result = getrlimit (RLIMIT_NOFILE, &rlp); + if (result != 0) + { + printf ("error %d: %s\n", errno, strerror (errno)); + exit (1); + } + printf ("current fd limit is %d\n", rlp.rlim_cur); + printf ("max fd limit is %d\n", rlp.rlim_max); + + /* change the current limit */ + rlp.rlim_cur = atoi (argv[1]); + + result = setrlimit (RLIMIT_NOFILE, &rlp); + if (result != 0) + { + printf ("error %d: %s\n", errno, strerror (errno)); + /* don't exit. see that the limit is unchanged */ + } + + result = getrlimit (RLIMIT_NOFILE, &rlp); + if (result != 0) + { + printf ("error %d: %s\n", errno, strerror (errno)); + exit (1); + } + printf ("current fd limit is %d\n", rlp.rlim_cur); + printf ("max fd limit is %d\n", rlp.rlim_max); + return 0; +} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <com...@us...> - 2006-11-01 12:41:23
|
Revision: 1354 http://svn.sourceforge.net/complement/?rev=1354&view=rev Author: complement Date: 2006-11-01 04:41:13 -0800 (Wed, 01 Nov 2006) Log Message: ----------- illustrations for stem performance Added Paths: ----------- trunk/explore/perf/stem/stemperl.gplot trunk/explore/perf/stem/test_scheme-p.fig trunk/explore/perf/stem/test_time_scheme-p.fig Added: trunk/explore/perf/stem/stemperl.gplot =================================================================== --- trunk/explore/perf/stem/stemperl.gplot (rev 0) +++ trunk/explore/perf/stem/stemperl.gplot 2006-11-01 12:41:13 UTC (rev 1354) @@ -0,0 +1,24 @@ +#!/usr/bin/env gnuplot + +set terminal png + +set xlabel "$t$, sec" +set ylabel "$\Delta t$, sec" + +set logscale y +set output "delivery-p.png" + +plot 'load-p.log' using ($2):($3) w d lt 2, \ + 'stat-p.dat' using ($1):($2) w l lt 4, \ + 'stat-p.dat' using ($1):($2):($3) w yerrorbars lt 4 +#pause (-1) + +unset logscale +set ylabel "messeges, sec$^{-1}$" + +set output "processed-p.png" + +plot 'stat-p.dat' using ($1):($4) w l + +#pause (-1) + Property changes on: trunk/explore/perf/stem/stemperl.gplot ___________________________________________________________________ Name: svn:executable + * Added: trunk/explore/perf/stem/test_scheme-p.fig =================================================================== --- trunk/explore/perf/stem/test_scheme-p.fig (rev 0) +++ trunk/explore/perf/stem/test_scheme-p.fig 2006-11-01 12:41:13 UTC (rev 1354) @@ -0,0 +1,69 @@ +#FIG 3.2 Produced by xfig version 3.2.5-alpha5 +Landscape +Center +Inches +Letter +100.00 +Single +-2 +1200 2 +6 300 2700 2400 3900 +1 1 0 1 0 7 50 -1 -1 0.000 1 0.0000 1350 3300 1050 600 1350 3300 2400 3900 +4 1 0 50 -1 20 10 0.0000 4 135 990 1350 3375 Echo server\001 +-6 +6 3450 150 5550 1350 +1 1 0 1 0 7 50 -1 -1 0.000 1 0.0000 4500 750 1050 600 4500 750 5550 1350 +4 1 0 50 -1 20 10 0.0000 4 135 990 4500 825 Echo Client\001 +-6 +6 3450 1650 5550 2850 +1 1 0 1 0 7 50 -1 -1 0.000 1 0.0000 4500 2250 1050 600 4500 2250 5550 2850 +4 1 0 50 -1 20 10 0.0000 4 135 990 4575 2325 Echo Client\001 +-6 +6 3450 3600 5550 4800 +1 1 0 1 0 7 50 -1 -1 0.000 1 0.0000 4500 4200 1050 600 4500 4200 5550 4800 +4 1 0 50 -1 20 10 0.0000 4 135 1170 4575 4200 Active Client\001 +-6 +6 3450 5175 5550 6375 +1 1 0 1 0 7 50 -1 -1 0.000 1 0.0000 4500 5775 1050 600 4500 5775 5550 6375 +4 1 0 50 -1 20 10 0.0000 4 135 1170 4575 5775 Active Client\001 +-6 +3 0 0 1 0 7 50 -1 -1 0.000 0 1 0 4 + 0 0 1.00 60.00 120.00 + 3600 5700 2325 5325 1500 4800 750 3450 + 0.000 1.000 1.000 0.000 +3 0 0 1 0 7 50 -1 -1 0.000 0 1 0 4 + 0 0 1.00 60.00 120.00 + 2025 3375 2250 4500 3000 4725 3750 4500 + 0.000 1.000 1.000 0.000 +3 0 0 1 0 7 50 -1 -1 0.000 0 1 0 4 + 0 0 1.00 60.00 120.00 + 3600 4275 3075 4425 2550 4350 2250 3450 + 0.000 1.000 1.000 0.000 +3 0 0 1 0 7 50 -1 -1 0.000 0 1 0 4 + 0 0 1.00 60.00 120.00 + 3600 2175 2775 2550 2475 2775 2025 3225 + 0.000 1.000 1.000 0.000 +3 0 0 1 0 7 50 -1 -1 0.000 0 1 0 4 + 0 0 1.00 60.00 120.00 + 2250 3300 2550 2925 2775 2775 3675 2400 + 0.000 1.000 1.000 0.000 +3 0 0 1 0 7 50 -1 -1 0.000 0 1 0 4 + 0 0 1.00 60.00 120.00 + 750 3375 1650 2175 2850 1350 3750 975 + 0.000 1.000 1.000 0.000 +3 0 0 1 0 7 50 -1 -1 0.000 0 1 0 4 + 0 0 1.00 60.00 120.00 + 3600 750 2550 1125 1425 1875 600 3225 + 0.000 1.000 1.000 0.000 +3 0 0 1 0 7 50 -1 -1 0.000 0 1 0 4 + 0 0 1.00 60.00 120.00 + 525 3450 1200 4725 1725 5625 3750 6075 + 0.000 1.000 1.000 0.000 +3 0 0 1 0 7 50 -1 -1 0.000 0 1 0 4 + 0 0 1.00 60.00 120.00 + 3675 2400 3975 2325 3900 2175 3675 2175 + 0.000 1.000 1.000 0.000 +3 0 0 1 0 7 50 -1 -1 0.000 0 1 0 4 + 0 0 1.00 60.00 120.00 + 3825 975 3900 825 3825 675 3600 750 + 0.000 1.000 1.000 0.000 Added: trunk/explore/perf/stem/test_time_scheme-p.fig =================================================================== --- trunk/explore/perf/stem/test_time_scheme-p.fig (rev 0) +++ trunk/explore/perf/stem/test_time_scheme-p.fig 2006-11-01 12:41:13 UTC (rev 1354) @@ -0,0 +1,84 @@ +#FIG 3.2 Produced by xfig version 3.2.5-alpha5 +Landscape +Center +Inches +Letter +100.00 +Single +-2 +1200 2 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2 + 0 0 1.00 60.00 120.00 + 1200 975 1200 3075 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2 + 0 0 1.00 60.00 120.00 + 3600 975 3600 7500 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2 + 0 0 1.00 60.00 120.00 + 6000 975 6000 7500 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2 + 0 0 1.00 60.00 120.00 + 6000 1200 3600 1650 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2 + 0 0 1.00 60.00 120.00 + 3600 1800 1200 2250 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2 + 0 0 1.00 60.00 120.00 + 1200 2400 3600 2775 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2 + 0 0 1.00 60.00 120.00 + 3600 2925 6000 3450 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2 + 6000 1200 6675 1200 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2 + 6000 3450 6675 3450 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 1 2 + 0 0 1.00 60.00 120.00 + 0 0 1.00 60.00 120.00 + 6600 1200 6600 3450 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2 + 6000 4050 6675 4050 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2 + 0 0 1.00 60.00 120.00 + 2250 3825 2250 7500 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2 + 0 0 1.00 60.00 120.00 + 6000 4050 3600 4500 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2 + 0 0 1.00 60.00 120.00 + 3600 4650 2250 4950 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2 + 0 0 1.00 60.00 120.00 + 2250 5100 3600 5400 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 0 2 + 0 0 1.00 60.00 120.00 + 3600 5550 6000 6075 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2 + 6000 6075 6675 6075 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 1 2 + 0 0 1.00 60.00 120.00 + 0 0 1.00 60.00 120.00 + 6600 3450 6600 4050 +2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 1 1 2 + 0 0 1.00 60.00 120.00 + 0 0 1.00 60.00 120.00 + 6600 4050 6600 6075 +4 1 0 50 -1 20 10 0.0000 4 135 1170 1200 600 Echo Client X\001 +4 1 0 50 -1 20 10 0.0000 4 135 990 3600 600 Echo Server\001 +4 1 0 50 -1 20 10 0.0000 4 135 1170 6000 600 Active Client\001 +4 0 0 50 -1 20 12 0.0000 4 120 90 6225 7425 t\001 +4 0 0 50 -1 20 12 0.0000 4 120 90 3900 7425 t\001 +4 0 0 50 -1 20 12 0.0000 4 120 90 1500 2925 t\001 +4 1 0 50 -1 20 10 0.0000 4 135 1170 2400 3600 Echo Client Y\001 +4 0 0 50 -1 20 12 0.0000 4 120 90 2475 7425 t\001 +4 0 0 50 -1 20 12 0.0000 4 165 1170 6825 2400 Responce time\001 +4 0 0 50 -1 20 12 0.0000 4 165 1170 6825 5100 Responce time\001 +4 0 0 50 -1 20 12 0.0000 4 165 450 6825 3750 Delay\001 +4 0 0 50 -1 20 12 0.0000 4 165 900 4200 1200 Message #1\001 +4 0 0 50 -1 20 12 0.0000 4 165 900 1875 1725 Message #1\001 +4 0 0 50 -1 20 12 0.0000 4 165 900 2325 2400 Message #1\001 +4 0 0 50 -1 20 12 0.0000 4 165 900 4650 3000 Message #1\001 +4 0 0 50 -1 20 12 0.0000 4 165 900 4200 4050 Message #2\001 +4 0 0 50 -1 20 12 0.0000 4 165 900 2475 4575 Message #2\001 +4 0 0 50 -1 20 12 0.0000 4 165 900 2625 5100 Message #2\001 +4 0 0 50 -1 20 12 0.0000 4 165 900 4725 5625 Message #2\001 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |