summaryrefslogtreecommitdiff
path: root/test/bench/reverse-complement.go
AgeCommit message (Collapse)AuthorFilesLines
2009-11-20gofmt -r 'α[β:len(α)] -> α[β:]' -w test/benchRuss Cox1-7/+7
except chameneosredux which i know is being edited require gofmt for test/bench R=r http://codereview.appspot.com/157110
2009-11-20test/bench revisions;Russ Cox1-21/+33
* 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-11-18remove bytes.CopyRob Pike1-26/+25
replace all calls with calls to copy use copy in regexp and bytes.Buffer R=rsc CC=golang-dev http://codereview.appspot.com/157073
2009-08-27remove Line in bufio.ReadLine(Bytes|Slice|String)Russ Cox1-1/+1
also drop bool arg from ReadString R=r DELTA=45 (13 added, 1 deleted, 31 changed) OCL=33923 CL=33960
2009-08-04another benchmark: reverse-complementRob Pike1-0/+121
R=rsc DELTA=682 (511 added, 171 deleted, 0 changed) OCL=32725 CL=32727