gpt4 book ai didi

c++ - 如何在 https://quick-bench.com 上对 fmt::format API 进行基准测试

转载 作者:行者123 更新时间:2023-12-05 04:27:52 24 4
gpt4 key购买 nike

我正在尝试理解和基准测试 fmt::format API ( https://fmt.dev/latest/api.html )。我在编译器资源管理器中写了一个简单的测试,即 https://godbolt.org/z/fMcf3nczE .

#include <benchmark/benchmark.h>
#include <fmt/core.h>

static void BM_format(benchmark::State& state) {
// Perform setup here
for (auto _ : state)
{
std::string s = fmt::format( "{}", "testing fmt::format in benchmark");
}
}
// Register the function as a benchmark
BENCHMARK(BM_format);
// Run the benchmark
BENCHMARK_MAIN();

然后,我从编译资源管理器启动了 quick-bench。在 quick-bench 中,它给出了一个错误

Error or timeout bench-file.cpp:2:10: fatal error: fmt/core.h: No suchfile or directory2 | #include <fmt/core.h>| ^~~~~~~~~~~~ compilation terminated.

quick-bench 是否支持 c++ fmt 库以便编译和执行?如果没有,还有其他选择。

最佳答案

不幸的是,quick-bench 不支持需要单独编译的外部库 (as fmt does)。作为旁注,它确实 not support the inclusion of header-only libraries via URLs, either .

我会说,在这种特定情况下,如果您没有专门绑定(bind)到 fmt lib,则可以改用 C++20 std::format。但不幸的是,clang 14 和 gcc 11(或者更确切地说,libc++ 和 libstdc++)都还没有实现它。

所以我担心你的要求现在根本不可能。您需要在自己的计算机上进行基准测试。

关于c++ - 如何在 https://quick-bench.com 上对 fmt::format API 进行基准测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72754623/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com