- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试理解和基准测试 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/
我是一名优秀的程序员,十分优秀!