File: charconv_to_chars_benchmark.cpp

package info (click to toggle)
seqan3 3.4.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 17,580 kB
  • sloc: cpp: 145,192; sh: 307; xml: 264; javascript: 95; makefile: 70; perl: 29; php: 15
file content (70 lines) | stat: -rw-r--r-- 1,979 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// SPDX-FileCopyrightText: 2006-2025 Knut Reinert & Freie Universität Berlin
// SPDX-FileCopyrightText: 2016-2025 Knut Reinert & MPI für molekulare Genetik
// SPDX-License-Identifier: BSD-3-Clause

#include <benchmark/benchmark.h>

#include <cstring>
#include <seqan3/std/charconv>
#include <sstream>
#include <string_view>

// -----------------------------------------------------------------------------
// to_chars for integral types
// -----------------------------------------------------------------------------

template <typename arithmetic_type>
static void to_char(benchmark::State & state)
{
    arithmetic_type val{120};
    std::stringstream ss;
    char buffer[10];

    for (auto _ : state)
    {
        auto result = std::to_chars(std::begin(buffer), std::end(buffer), val);
        *result.ptr = 0;
        ss << buffer;
    }

    // prevent complete optimisation
    [[maybe_unused]] volatile auto fin = ss.rdbuf();
}

BENCHMARK_TEMPLATE(to_char, int8_t);
BENCHMARK_TEMPLATE(to_char, uint8_t);
BENCHMARK_TEMPLATE(to_char, int16_t);
BENCHMARK_TEMPLATE(to_char, uint16_t);
BENCHMARK_TEMPLATE(to_char, int32_t);
BENCHMARK_TEMPLATE(to_char, uint32_t);
BENCHMARK_TEMPLATE(to_char, int64_t);
BENCHMARK_TEMPLATE(to_char, uint64_t);

template <typename arithmetic_type>
static void to_stream(benchmark::State & state)
{
    arithmetic_type val{120};
    std::stringstream ss;

    for (auto _ : state)
    {
        if constexpr (sizeof(arithmetic_type) == 1)
            ss << (int)val;
        else
            ss << val;
    }

    // prevent complete optimisation
    [[maybe_unused]] volatile auto fin = ss.rdbuf();
}

BENCHMARK_TEMPLATE(to_stream, int8_t);
BENCHMARK_TEMPLATE(to_stream, uint8_t);
BENCHMARK_TEMPLATE(to_stream, int16_t);
BENCHMARK_TEMPLATE(to_stream, uint16_t);
BENCHMARK_TEMPLATE(to_stream, int32_t);
BENCHMARK_TEMPLATE(to_stream, uint32_t);
BENCHMARK_TEMPLATE(to_stream, int64_t);
BENCHMARK_TEMPLATE(to_stream, uint64_t);

BENCHMARK_MAIN();