Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
47bc1f2e
Commit
47bc1f2e
authored
Jun 03, 2010
by
Kyle Consalus
Committed by
Rob Pike
Jun 03, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added regex-dna-parallel.go, a pretty trivial parallelization.
R=rsc, r CC=golang-dev
https://golang.org/cl/972046
parent
24baca49
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
138 additions
and
0 deletions
+138
-0
test/bench/regex-dna-parallel.go
test/bench/regex-dna-parallel.go
+124
-0
test/bench/regex-dna-parallel.txt
test/bench/regex-dna-parallel.txt
+13
-0
test/bench/timing.sh
test/bench/timing.sh
+1
-0
No files found.
test/bench/regex-dna-parallel.go
0 → 100644
View file @
47bc1f2e
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of "The Computer Language Benchmarks Game" nor the
name of "The Computer Language Shootout Benchmarks" nor the names of
its contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
/* The Computer Language Benchmarks Game
* http://shootout.alioth.debian.org/
*
* contributed by The Go Authors.
*/
package
main
import
(
"fmt"
"io/ioutil"
"os"
"runtime"
"regexp"
)
var
variants
=
[]
string
{
"agggtaaa|tttaccct"
,
"[cgt]gggtaaa|tttaccc[acg]"
,
"a[act]ggtaaa|tttacc[agt]t"
,
"ag[act]gtaaa|tttac[agt]ct"
,
"agg[act]taaa|ttta[agt]cct"
,
"aggg[acg]aaa|ttt[cgt]ccct"
,
"agggt[cgt]aa|tt[acg]accct"
,
"agggta[cgt]a|t[acg]taccct"
,
"agggtaa[cgt]|[acg]ttaccct"
,
}
type
Subst
struct
{
pat
,
repl
string
}
var
substs
=
[]
Subst
{
Subst
{
"B"
,
"(c|g|t)"
},
Subst
{
"D"
,
"(a|g|t)"
},
Subst
{
"H"
,
"(a|c|t)"
},
Subst
{
"K"
,
"(g|t)"
},
Subst
{
"M"
,
"(a|c)"
},
Subst
{
"N"
,
"(a|c|g|t)"
},
Subst
{
"R"
,
"(a|g)"
},
Subst
{
"S"
,
"(c|g)"
},
Subst
{
"V"
,
"(a|c|g)"
},
Subst
{
"W"
,
"(a|t)"
},
Subst
{
"Y"
,
"(c|t)"
},
}
func
countMatches
(
pat
string
,
bytes
[]
byte
)
int
{
re
:=
regexp
.
MustCompile
(
pat
)
n
:=
0
for
{
e
:=
re
.
Execute
(
bytes
)
if
len
(
e
)
==
0
{
break
}
n
++
bytes
=
bytes
[
e
[
1
]
:
]
}
return
n
}
func
main
()
{
runtime
.
GOMAXPROCS
(
4
)
bytes
,
err
:=
ioutil
.
ReadFile
(
"/dev/stdin"
)
if
err
!=
nil
{
fmt
.
Fprintf
(
os
.
Stderr
,
"can't read input: %s
\n
"
,
err
)
os
.
Exit
(
2
)
}
ilen
:=
len
(
bytes
)
// Delete the comment lines and newlines
bytes
=
regexp
.
MustCompile
(
"(>[^
\n
]+)?
\n
"
)
.
ReplaceAll
(
bytes
,
[]
byte
{})
clen
:=
len
(
bytes
)
mresults
:=
make
([]
chan
int
,
len
(
variants
))
for
i
,
s
:=
range
variants
{
ch
:=
make
(
chan
int
)
mresults
[
i
]
=
ch
go
func
(
ss
string
)
{
ch
<-
countMatches
(
ss
,
bytes
)
}(
s
)
}
lenresult
:=
make
(
chan
int
)
bb
:=
bytes
go
func
()
{
for
_
,
sub
:=
range
substs
{
bb
=
regexp
.
MustCompile
(
sub
.
pat
)
.
ReplaceAll
(
bb
,
[]
byte
(
sub
.
repl
))
}
lenresult
<-
len
(
bb
)
}()
for
i
,
s
:=
range
variants
{
fmt
.
Printf
(
"%s %d
\n
"
,
s
,
<-
mresults
[
i
])
}
fmt
.
Printf
(
"
\n
%d
\n
%d
\n
%d
\n
"
,
ilen
,
clen
,
<-
lenresult
)
}
test/bench/regex-dna-parallel.txt
0 → 100644
View file @
47bc1f2e
agggtaaa|tttaccct 1
[cgt]gggtaaa|tttaccc[acg] 0
a[act]ggtaaa|tttacc[agt]t 0
ag[act]gtaaa|tttac[agt]ct 0
agg[act]taaa|ttta[agt]cct 1
aggg[acg]aaa|ttt[cgt]ccct 0
agggt[cgt]aa|tt[acg]accct 0
agggta[cgt]a|t[acg]taccct 0
agggtaa[cgt]|[acg]ttaccct 2
10245
10000
13348
test/bench/timing.sh
View file @
47bc1f2e
...
...
@@ -119,6 +119,7 @@ regexdna() {
run
'gcc -O2 regex-dna.c -lpcre'
a.out <x
# run 'gccgo -O2 regex-dna.go' a.out <x # pages badly; don't run
run
'gc regex-dna'
$O
.out <x
run
'gc regex-dna-parallel'
$O
.out <x
run
'gc_B regex-dna'
$O
.out <x
rm
x
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment