mirror of
https://github.com/lemire/fast_double_parser.git
synced 2025-04-03 20:04:57 +00:00
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
22 lines
467 B
Text
22 lines
467 B
Text
cc_library(
|
|
name = "fast_double_parser",
|
|
hdrs = ["include/fast_double_parser.h"],
|
|
strip_include_prefix = "include",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
cc_test(
|
|
name = "unit",
|
|
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",
|
|
],
|
|
)
|