Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
wasm-watermarker
Project
Project
Details
Activity
Releases
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nagayama15
wasm-watermarker
Commits
ec14f638
Commit
ec14f638
authored
Nov 10, 2019
by
nagayama15
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve bench
parent
68676602
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
7 deletions
+12
-7
benchmark.js
example/zlib-wasm/benchmark.js
+11
-6
zlib.js
example/zlib-wasm/zlib.js
+1
-1
No files found.
example/zlib-wasm/benchmark.js
View file @
ec14f638
...
...
@@ -14,22 +14,27 @@ const rawData = Crypto.randomBytes(size);
const
libs
=
await
Promise
.
all
(
libPaths
.
map
(
async
path
=>
await
require
(
'./zlib'
).
initialize
(
path
)));
const
compressed
=
libs
[
0
].
deflate
(
rawData
);
// Validation
libs
.
forEach
((
Zlib
,
i
)
=>
{
assert
.
deepEqual
(
Zlib
.
inflate
(
Zlib
.
deflate
(
rawData
)),
rawData
,
libPaths
[
i
]);
assert
.
deepEqual
(
Zlib
.
deflate
(
rawData
),
compressed
,
`
${
libPaths
[
i
]}
- .deflate()`
);
assert
.
deepEqual
(
Zlib
.
inflate
(
compressed
),
rawData
,
`
${
libPaths
[
i
]}
- .inflate()`
);
});
// Warming up
console
.
log
(
`raw size:
${
rawData
.
length
}
bytes`
);
console
.
log
(
`deflated size:
${
compressed
.
length
}
bytes`
);
console
.
log
(
`compression rate:
${(
compressed
.
length
/
rawData
.
length
*
100
).
toFixed
(
1
)}
%`
)
libs
.
forEach
((
Zlib
,
i
)
=>
{
// Warming up
console
.
time
(
`Warm -
${
libPaths
[
i
]}
`
);
for
(
let
i
=
0
;
i
<
5
;
i
++
)
{
for
(
let
i
=
0
;
i
<
10
;
i
++
)
{
Zlib
.
deflate
(
rawData
);
}
console
.
timeEnd
(
`Warm -
${
libPaths
[
i
]}
`
);
});
// Benchmark
libs
.
forEach
((
Zlib
,
i
)
=>
{
// Benchmark
console
.
time
(
`Benchmark -
${
libPaths
[
i
]}
`
);
for
(
let
i
=
0
;
i
<
100
;
i
++
)
{
Zlib
.
deflate
(
rawData
);
...
...
example/zlib-wasm/zlib.js
View file @
ec14f638
...
...
@@ -5,7 +5,7 @@ const fs = require("fs");
module
.
exports
.
initialize
=
async
(
wasm_path
)
=>
{
const
buff
=
fs
.
readFileSync
(
wasm_path
);
const
COMPRESSION_LEVEL
=
6
;
const
COMPRESSION_LEVEL
=
9
;
const
NO_ZLIB_HEADER
=
-
1
;
const
CHUNK_SIZE
=
32
*
1024
;
const
map
=
{};
...
...
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