Giter Site home page Giter Site logo

fleetbench's Introduction

Fleetbench

Fleetbench is a benchmarking suite for Google workloads. It's a portmanteau of "fleet" and "benchmark". It is meant for use by chip vendors, compiler researchers, and others interested in making performance optimizations beneficial to workloads similar to Google's. This repository contains the Fleetbench C++ code.

Overview

Fleetbench is a benchmarking suite that consists of a curated set of microbenchmarks for hot functions across Google's fleet. The data set distributions it uses for executing the benchmarks are derived from data collected in production.

IMPORTANT: This benchmark at v1.0.0 represents subset of core libraries used across the fleet. Future releases will continue to increase this coverage. The goal is to expand coverage iteratively and keep distributions up-to-date, so always use its version at HEAD.

For more information, see:

Benchmark fidelity

Benchmark fidelity is an important consideration in building this suite. There are 3 levels of fidelity that we consider:

  1. The suite exercises the same functionality as production.
  2. The suite's performance counters match production.
  3. An optimization impact on the suite matches the impact on production.

Versioning

Fleetbench uses semantic versioning for its releases, where PATCH versions will be used for bug fixes, MINOR for updates to distributions and category coverage, and MAJOR for substantial changes to the benchmarking suite. All releases will be tagged, and the suite can be built and run at any version of the tag.

If you're starting out, authors recommend you always use the latest version at HEAD only.

Workloads coverage

As of Q2'24, Fleetbench provides coverage for several major hot functions.

Benchmark Description
Proto Instruction-focused.
Swissmap Data-focused.
Libc Data-focused.
TCMalloc Data-focused.
Compression Data-focused. Covers Snappy, ZSTD, Brotli, and Zlib.
Hashing Data-focused. Supports algorithms CRC32 and absl::Hash.
STL-Cord Instruction-focused.

Running Benchmarks

Setup

Bazel is the official build system for Fleetbench.

We support Bazel version 6 and 7.

As an example, to run the Swissmap benchmarks:

bazel run --config=opt fleetbench/swissmap:swissmap_benchmark

Important: Always run benchmarks with --config=opt to apply essential compiler optimizations.

Run commands

Replacing the $WORK_LOAD and $BUILD_TARGET with one of the entry in the table to build and run the benchmark. The reasons why we add each build flag are explained in the next few sections.

GLIBC_TUNABLES=glibc.pthread.rseq=0 bazel build --config=clang --config=opt --config=haswell fleetbench/WORK_LOAD:BUILD_TARGET
bazel-bin/fleetbench/WORK_LOAD/BUILD_TARGET

Or combining build and run together:

GLIBC_TUNABLES=glibc.pthread.rseq=0 bazel run --config=clang --config=opt --config=haswell fleetbench/WORK_LOAD:BUILD_TARGET
Benchmark WORKLOAD BUILD_TARGET Binary run flags
Proto proto proto_benchmark --benchmark_min_time=3s
Swissmap swissmap swissmap_benchmark
Libc memory libc mem_benchmark --benchmark_counters_tabular=true
TCMalloc tcmalloc empirical_driver --benchmark_min_time=10s. Check --benchmark_filter below.
Compression compression compression_benchmark --benchmark_counters_tabular=true
Hashing hashing hashing_benchmark --benchmark_counters_tabular=true
STL-Cord stl cord_benchmark

NOTE: By default, each benchmark only runs a minimal set of tests that we have selected as the most representative. To see the default lists, you can use the --benchmark_list_tests flag when running the target. You can add --benchmark_filter=all to see the exhaustive list.

You can also specify a regex in --benchmark_filter flag to specify a subset of benchmarks to run (more info). The TCMalloc Empirical Driver benchmark can take ~1hr to run all benchmarks, so running a subset may be advised.

Example to run for only sets of 16 and 64 elements of swissmap:

bazel run --config=opt fleetbench/swissmap:swissmap_benchmark -- \
--benchmark_filter=".*set_size:(16|64).*"

To extend the runtime of a benchmark, e.g. to collect more profile samples, use --benchmark_min_time.

bazel run --config=opt fleetbench/proto:proto_benchmark -- --benchmark_min_time=30s

Some benchmarks also provide counter reports after completion. Adding --benchmark_counters_tabular=true (doc) can help print counters as table columns for improved layout.

Ensuring TCMalloc per-CPU Mode

TCMalloc is the underlying memory allocator in this benchmark suite. By default it operates in per-CPU mode.

Note: the Restartable Sequences (RSEQ) kernel feature is required for per-CPU mode. RSEQ has the limitation that a given thread can only register a single rseq structure with the kernel. Recent versions of glibc do this on initialization, preventing TCMalloc from using it.

Set the environment variable: GLIBC_TUNABLES=glibc.pthread.rseq=0 to prevent glibc from doing this registration. This will allow TCMalloc to operate in per-CPU mode.

Clang Toolchain

For more consistency with Google's build configuration, we suggest using the Clang / LLVM tools. These instructions have been tested with LLVM 14.

These can be installed with the system's package manager, e.g. on Debian:

sudo apt-get install clang llvm lld

Otherwise, see https://releases.llvm.org to obtain these if not present on your system or to find the newest version.

Once installed, specify --config=clang on the bazel command line to use the clang compiler. We assume clang and lld are in the PATH.

Note: to make this setting the default, add build --config=clang to your .bazelrc.

Architecture-Specific Flags

If running on an x86 Haswell or above machine, we suggest adding --config=haswell for consistency with our compiler flags.

Use --config=westmere for Westmere-era processors.

Reducing run-to-run variance

It is expected that there will be some variance in the reported CPU times across benchmark executions. The benchmark itself runs the same code, so the causes of the variance are mainly in the environment. The following is a non-exhaustive list of techniques that help with reducing run-to-run latency variance:

  • Ensure no other workloads are running on the machine at the same time. Note that this makes the environment less representative of production, where multi-tenant workloads are common.
  • Run the benchmark for longer, controlled with --benchmark_min_time.
  • Run multiple repetitions of the benchmarks in one go, controlled with --benchmark_repetitions.
  • Recommended by the benchmarking framework here:
    • Disable frequency scaling
    • Bind the process to a core by setting its affinity
    • Disable processor boosting
    • Disable Hyperthreading/SMT (should not affect single-threaded benchmarks)
    • NOTE: We do not recommend reducing the working set of the benchmark to fit into L1 cache, contrary to the recommendations in the link, as it would significantly reduce this benchmarking suite's representativeness.
  • Disable memory randomization (ASLR)

Future Work

Potential areas of future work include:

  • Increasing the set of benchmarks included in the suite to capture more of the range of code executed by google workloads.
  • Generate benchmarking score.
  • Update data distributions based on new fleet measurements.
  • Rewrite individual components with macrobenchmarks.
  • Extend the benchmarking suite to allow for drop-in replacement of equivalent implementations for each category of workloads.

FAQs

  1. Q: How do I compare results of the two different runs of a benchmark, e.g. contender vs baseline?

    A: Fleetbench is using the benchmark framework. Please reference its documentation for comparing results across benchmark runs: link.

  2. Q: How do I build the benchmark with FDO?

    A: Note that Clang and the LLVM tools are required for FDO builds.

    Take fleetbench/swissmap/swissmap_benchmark as an example.

# Instrument.
bazel build --config=clang --config=opt --fdo_instrument=.fdo fleetbench/swissmap:swissmap_benchmark
# Run to generate instrumentation.
bazel-bin/fleetbench/swissmap/swissmap_benchmark --benchmark_filter=all
# There should be a file with a .profraw extension in $PWD/.fdo/.
# Build an optimized binary.
bazel build --config=clang --config=opt --fdo_optimize=.fdo/<filename>.profraw fleetbench/swissmap:swissmap_benchmark
# Run the FDO-optimized binary.
bazel-bin/fleetbench/swissmap/swissmap_benchmark --benchmark_filter=all
  1. Q: How do I build the benchmark with ThinLTO?

    A: Note that Clang and the LLVM tools are required for ThinLTO builds. In particular, the lld linker must be in the PATH. Specify --features=thin_lto on the bazel command line. E.g.

bazel run --config=clang --config=opt --features=thin_lto fleetbench/proto:proto_benchmark
  1. Q: Does Fleetbench run on _ OS?

    A: The supported platforms are same as TCMalloc's, see link for more details.

  2. Q: Can I run Fleetbench without TCMalloc?

    A: Yes. Specify --custom_malloc="@bazel_tools//tools/cpp:malloc" on the bazel command line to override with the system allocator.

  3. Q: Can I run with Address Sanitizer?

    A: Yes. Note that you need to override TCMalloc as well for ASAN to work.

    Example:

    bazel build --custom_malloc="@bazel_tools//tools/cpp:malloc" -c opt fleetbench/proto:proto_benchmark --copt=-fsanitize=address --linkopt=-fsanitize=address
  1. Q: Are the benchmarks fixed in nature?

    A: No. It is our expectation that the code under benchmark, the hardware, the compiler, and compiler flags used may all change in concert as to identify optimization opportunities.

  2. Q: My question isn't addressed here. How do I contact the development team?

    A: Please see previous GH issues and file a new one, if your question isn't addressed there.

License

Fleetbench is licensed under the terms of the Apache license. See LICENSE for more information.

Disclaimer: This is not an officially supported Google product.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.