Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
f172338a
Commit
f172338a
authored
Aug 26, 2011
by
Benny Siegert
Committed by
Nigel Tao
Aug 26, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
image/tiff: add a decode benchmark.
R=nigeltao CC=golang-dev
https://golang.org/cl/4917049
parent
3a1f29be
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
0 deletions
+25
-0
reader_test.go
src/pkg/image/tiff/reader_test.go
+25
-0
video-001-uncompressed.tiff
src/pkg/image/tiff/testdata/video-001-uncompressed.tiff
+0
-0
No files found.
src/pkg/image/tiff/reader_test.go
View file @
f172338a
...
...
@@ -5,10 +5,16 @@
package
tiff
import
(
"io/ioutil"
"os"
"testing"
)
// Read makes *buffer implements io.Reader, so that we can pass one to Decode.
func
(
*
buffer
)
Read
([]
byte
)
(
int
,
os
.
Error
)
{
panic
(
"unimplemented"
)
}
// TestNoRPS tries to decode an image that has no RowsPerStrip tag.
// The tag is mandatory according to the spec but some software omits
// it in the case of a single strip.
...
...
@@ -23,3 +29,22 @@ func TestNoRPS(t *testing.T) {
t
.
Fatal
(
err
)
}
}
const
filename
=
"testdata/video-001-uncompressed.tiff"
// BenchmarkDecode benchmarks the decoding of an image.
func
BenchmarkDecode
(
b
*
testing
.
B
)
{
b
.
StopTimer
()
contents
,
err
:=
ioutil
.
ReadFile
(
filename
)
if
err
!=
nil
{
panic
(
err
)
}
r
:=
&
buffer
{
buf
:
contents
}
b
.
StartTimer
()
for
i
:=
0
;
i
<
b
.
N
;
i
++
{
_
,
err
:=
Decode
(
r
)
if
err
!=
nil
{
panic
(
err
)
}
}
}
src/pkg/image/tiff/testdata/video-001-uncompressed.tiff
0 → 100644
View file @
f172338a
45.6 KB
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