summaryrefslogtreecommitdiff
path: root/bench/src/ziglyph_normalizer.zig
diff options
context:
space:
mode:
authorGravatar Jose Colon Rodriguez2024-07-18 08:04:58 -0400
committerGravatar Jose Colon Rodriguez2024-07-18 08:04:58 -0400
commit7ddce488e074c3f052949ba513a340446cea86e9 (patch)
treed546332da78d3cb061c9b98c72f6b39c8a394b2e /bench/src/ziglyph_normalizer.zig
parentMerge pull request 'refactor CodePoint.Iterator into a reusable fn' (#11) fro... (diff)
downloadzg-7ddce488e074c3f052949ba513a340446cea86e9.tar.gz
zg-7ddce488e074c3f052949ba513a340446cea86e9.tar.xz
zg-7ddce488e074c3f052949ba513a340446cea86e9.zip
Fixed benchmark duration printing
Diffstat (limited to 'bench/src/ziglyph_normalizer.zig')
-rw-r--r--bench/src/ziglyph_normalizer.zig10
1 files changed, 5 insertions, 5 deletions
diff --git a/bench/src/ziglyph_normalizer.zig b/bench/src/ziglyph_normalizer.zig
index fa077f4..e1e4c1b 100644
--- a/bench/src/ziglyph_normalizer.zig
+++ b/bench/src/ziglyph_normalizer.zig
@@ -28,7 +28,7 @@ pub fn main() !void {
28 const nfkc = try normalizer.nfkc(allocator, line); 28 const nfkc = try normalizer.nfkc(allocator, line);
29 result += nfkc.slice.len; 29 result += nfkc.slice.len;
30 } 30 }
31 std.debug.print("Ziglyph Normalizer.nfkc: result: {}, took: {}\n", .{ result, std.fmt.fmtDuration(timer.lap() / std.time.ns_per_ms) }); 31 std.debug.print("Ziglyph Normalizer.nfkc: result: {}, took: {}\n", .{ result, std.fmt.fmtDuration(timer.lap()) });
32 32
33 result = 0; 33 result = 0;
34 iter.reset(); 34 iter.reset();
@@ -38,7 +38,7 @@ pub fn main() !void {
38 const nfc = try normalizer.nfc(allocator, line); 38 const nfc = try normalizer.nfc(allocator, line);
39 result += nfc.slice.len; 39 result += nfc.slice.len;
40 } 40 }
41 std.debug.print("Ziglyph Normalizer.nfc: result: {}, took: {}\n", .{ result, std.fmt.fmtDuration(timer.lap() / std.time.ns_per_ms) }); 41 std.debug.print("Ziglyph Normalizer.nfc: result: {}, took: {}\n", .{ result, std.fmt.fmtDuration(timer.lap()) });
42 42
43 result = 0; 43 result = 0;
44 iter.reset(); 44 iter.reset();
@@ -48,7 +48,7 @@ pub fn main() !void {
48 const nfkd = try normalizer.nfkd(allocator, line); 48 const nfkd = try normalizer.nfkd(allocator, line);
49 result += nfkd.slice.len; 49 result += nfkd.slice.len;
50 } 50 }
51 std.debug.print("Ziglyph Normalizer.nfkd: result: {}, took: {}\n", .{ result, std.fmt.fmtDuration(timer.lap() / std.time.ns_per_ms) }); 51 std.debug.print("Ziglyph Normalizer.nfkd: result: {}, took: {}\n", .{ result, std.fmt.fmtDuration(timer.lap()) });
52 52
53 result = 0; 53 result = 0;
54 iter.reset(); 54 iter.reset();
@@ -58,7 +58,7 @@ pub fn main() !void {
58 const nfd = try normalizer.nfd(allocator, line); 58 const nfd = try normalizer.nfd(allocator, line);
59 result += nfd.slice.len; 59 result += nfd.slice.len;
60 } 60 }
61 std.debug.print("Ziglyph Normalizer.nfd: result: {}, took: {}\n", .{ result, std.fmt.fmtDuration(timer.lap() / std.time.ns_per_ms) }); 61 std.debug.print("Ziglyph Normalizer.nfd: result: {}, took: {}\n", .{ result, std.fmt.fmtDuration(timer.lap()) });
62 62
63 result = 0; 63 result = 0;
64 iter.reset(); 64 iter.reset();
@@ -71,5 +71,5 @@ pub fn main() !void {
71 @memcpy(buf[0..line.len], line); 71 @memcpy(buf[0..line.len], line);
72 prev_line = buf[0..line.len]; 72 prev_line = buf[0..line.len];
73 } 73 }
74 std.debug.print("Ziglyph Normalizer.eql: result: {}, took: {}\n", .{ result, std.fmt.fmtDuration(timer.lap() / std.time.ns_per_ms) }); 74 std.debug.print("Ziglyph Normalizer.eql: result: {}, took: {}\n", .{ result, std.fmt.fmtDuration(timer.lap()) });
75} 75}