summaryrefslogtreecommitdiff
path: root/test/bench/timing.sh
AgeCommit message (Collapse)AuthorFilesLines
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý1-1/+2
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-18/+24
2010-06-03Added regex-dna-parallel.go, a pretty trivial parallelization.Kyle Consalus1-0/+1
R=rsc, r CC=golang-dev http://codereview.appspot.com/972046 Committer: Rob Pike <r@golang.org>
2010-04-26Added fannkuch-parallel.goKyle Consalus1-0/+2
R=r, rsc CC=golang-dev http://codereview.appspot.com/978042 Committer: Russ Cox <rsc@golang.org>
2010-04-21test/bench: reenable chameneosredux for gccgo.Rob Pike1-6/+1
run reverse-complement only once. (garbage is no longer an issue) R=rsc CC=golang-dev http://codereview.appspot.com/968041
2010-04-05test/bench: add k-nucleotide-parallelKyle Consalus1-0/+2
R=rsc CC=golang-dev http://codereview.appspot.com/881042 Committer: Russ Cox <rsc@golang.org>
2009-12-11Remove GOBIN in PATH dependency; don't assume cwd is $GOROOT/srcDevon H. O'Dell1-2/+5
This change removes the necessity to have GOBIN in $PATH, and also doesn't assume that the build is being run from $GOROOT/src. This is a minimal set of necessary changes to get Go to build happily from the FreeBSD ports collection. R=rsc CC=golang-dev http://codereview.appspot.com/171044 Committer: Russ Cox <rsc@golang.org>
2009-11-30change command-line argument to beRoger Peppe1-2/+2
unnamed, not require -n, in line with other entries. R=rsc CC=r http://codereview.appspot.com/162061 Committer: Russ Cox <rsc@golang.org>
2009-11-23go: makes it build for the case $GOROOT has whitespacesSergio Luis O. B. Correia1-1/+1
the bash scripts and makefiles for building go didn't take into account the fact $GOROOT / $GOBIN could both be directories containing whitespaces, and was not possible to build it in such a situation. this commit adjusts the various makefiles/scripts to make it aware of that possibility, and now it builds successfully when using a path with whitespaces as well. Fixes issue 115. R=rsc, dsymonds1 http://codereview.appspot.com/157067 Committer: Russ Cox <rsc@golang.org>
2009-11-20test/bench revisions;Russ Cox1-2/+8
* reverse-complement: port C algorithm to Go saves 30% on my MacBook Pro and makes it a fairer comparison. * test reverse-complement with and without GC (another 15%) * revise timing.sh to work on more systems * avoid two glibcisms in fasta.c R=r http://codereview.appspot.com/156110
2009-08-09Partially fix build: don't assume . is in PATH.David Symonds1-0/+1
APPROVED=rsc DELTA=1 (1 added, 0 deleted, 0 changed) OCL=32948 CL=32948
2009-08-09run benchmarks in a relatively fast test mode, as part of run.bash/all.bashRob Pike1-20/+60
R=rsc DELTA=293 (224 added, 0 deleted, 69 changed) OCL=32917 CL=32944
2009-08-07chameneosRob Pike1-1/+8
R=rsc DELTA=514 (513 added, 0 deleted, 1 changed) OCL=32898 CL=32910
2009-08-07threadringRob Pike1-1/+8
more interesting than most R=rsc DELTA=132 (131 added, 0 deleted, 1 changed) OCL=32876 CL=32881
2009-08-07timing updates after 6g change for efficient division by powers of twoRob Pike1-1/+1
R=rsc DELTA=25 (23 added, 0 deleted, 2 changed) OCL=32873 CL=32875
2009-08-06timings for pidigitsRob Pike1-1/+9
TBR=rsc OCL=32857 CL=32857
2009-08-06meteor-contestRob Pike1-1/+9
R=rsc DELTA=1276 (1275 added, 0 deleted, 1 changed) OCL=32851 CL=32854
2009-08-06mandelbrotRob Pike1-1/+10
R=rsc DELTA=147 (145 added, 0 deleted, 2 changed) OCL=32840 CL=32845
2009-08-06k-nucleotideRob Pike1-1/+11
R=rsc DELTA=367 (366 added, 0 deleted, 1 changed) OCL=32832 CL=32836
2009-08-05spectral-normRob Pike1-1/+9
make regexp-dna use bytes not strings (no significant timing change) R=rsc DELTA=149 (138 added, 1 deleted, 10 changed) OCL=32804 CL=32807
2009-08-05regex-dnaRob Pike1-1/+12
R=rsc DELTA=243 (242 added, 0 deleted, 1 changed) OCL=32786 CL=32791
2009-08-05fannkuchRob Pike1-1/+9
R=rsc DELTA=240 (239 added, 0 deleted, 1 changed) OCL=32783 CL=32785
2009-08-04binary treeRob Pike1-1/+10
R=rsc DELTA=324 (323 added, 0 deleted, 1 changed) OCL=32759 CL=32768
2009-08-04add info about Sqrt instructionRob Pike1-5/+6
couple of fixes to timing.sh R=rsc DELTA=10 (5 added, 0 deleted, 5 changed) OCL=32742 CL=32756
2009-08-04nbody benchmarkRob Pike1-14/+38
timing.sh improvements R=rsc DELTA=334 (319 added, 0 deleted, 15 changed) OCL=32734 CL=32736
2009-08-04improve myrandom() in fasta.Rob Pike1-0/+38
add script to automate timing R=rsc DELTA=78 (68 added, 0 deleted, 10 changed) OCL=32729 CL=32732