From f5096c7a944403946c925d8bc5e79cb227c660d3 Mon Sep 17 00:00:00 2001 From: Carbo Kuo Date: Thu, 31 Oct 2024 10:39:29 -0400 Subject: [PATCH] Add benchmark binary to Bazel BUILD. To build it, run: bazel build --compilation_mode=opt //:benchmark To run the benchmark, run: bazel-bin/benchmark benchmarks/data/canada.txt Result from my computer: read 111126 lines === trial 1 === fast_double_parser 1315.70 MB/s strtod 722.10 MB/s abslfromch 810.26 MB/s absl 799.89 MB/s double-conv 396.05 MB/s === trial 2 === fast_double_parser 1416.58 MB/s strtod 751.43 MB/s abslfromch 841.83 MB/s absl 838.71 MB/s double-conv 415.33 MB/s --- BUILD.bazel | 10 ++++++++++ MODULE.bazel | 3 +++ 2 files changed, 13 insertions(+) diff --git a/BUILD.bazel b/BUILD.bazel index 574d167..8bfebdd 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -10,3 +10,13 @@ cc_test( srcs = ["tests/unit.cpp"], deps = [":fast_double_parser"], ) + +cc_binary( + name = "benchmark", + srcs = ["benchmarks/benchmark.cpp"], + deps = [ + ":fast_double_parser", + "@abseil-cpp//absl/strings", + "@double-conversion", + ], +) diff --git a/MODULE.bazel b/MODULE.bazel index 62b049b..a7920b3 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -5,3 +5,6 @@ module( version = "0.8.0", compatibility_level = 0, ) + +bazel_dep(name = "abseil-cpp", version = "20240722.0", dev_dependency = True) +bazel_dep(name = "double-conversion", version = "3.3.0", dev_dependency = True)