2024-02-13 17:22:08 -08:00
|
|
|
#!/bin/sh
|
|
|
|
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
|
|
#
|
|
|
|
# This source code is licensed under the MIT license found in the
|
|
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
cd "$(dirname "$0")" || exit
|
|
|
|
CAPTURES_PATH="$(dirname "$(realpath "$0")")""/captures"
|
|
|
|
|
|
|
|
if [ "$1" = "buck" ]; then
|
2024-03-04 02:28:02 -08:00
|
|
|
buck run @//fbcode/mode/opt :benchmarkCXX "${CAPTURES_PATH}"
|
2024-02-13 17:22:08 -08:00
|
|
|
else
|
|
|
|
cmake -B build -S . -D CMAKE_BUILD_TYPE=Release
|
|
|
|
cmake --build build
|
|
|
|
build/benchmark "${CAPTURES_PATH}"
|
|
|
|
fi
|