LCOV - code coverage report
Current view: top level - src/node - minisketchwrapper.cpp (source / functions) Hit Total Coverage
Test: coverage.lcov Lines: 38 41 92.7 %
Date: 2022-04-21 14:51:19 Functions: 3 4 75.0 %
Legend: Modified by patch:
Lines: hit not hit | Branches: + taken - not taken # not executed

Not modified by patch:
Lines: hit not hit | Branches: + taken - not taken # not executed
Branches: 15 16 93.8 %

           Branch data     Line data    Source code
#       1                 :            : // Copyright (c) 2021 The Bitcoin Core developers
#       2                 :            : // Distributed under the MIT software license, see the accompanying
#       3                 :            : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
#       4                 :            : 
#       5                 :            : #include <node/minisketchwrapper.h>
#       6                 :            : 
#       7                 :            : #include <logging.h>
#       8                 :            : #include <util/time.h>
#       9                 :            : 
#      10                 :            : #include <minisketch.h>
#      11                 :            : 
#      12                 :            : #include <algorithm>
#      13                 :            : #include <cstddef>
#      14                 :            : #include <cstdint>
#      15                 :            : #include <optional>
#      16                 :            : #include <utility>
#      17                 :            : #include <vector>
#      18                 :            : 
#      19                 :            : namespace node {
#      20                 :            : namespace {
#      21                 :            : 
#      22                 :            : static constexpr uint32_t BITS = 32;
#      23                 :            : 
#      24                 :            : uint32_t FindBestImplementation()
#      25                 :          2 : {
#      26                 :          2 :     std::optional<std::pair<int64_t, uint32_t>> best;
#      27                 :            : 
#      28                 :          2 :     uint32_t max_impl = Minisketch::MaxImplementation();
#      29         [ +  + ]:          8 :     for (uint32_t impl = 0; impl <= max_impl; ++impl) {
#      30                 :          6 :         std::vector<int64_t> benches;
#      31                 :          6 :         uint64_t offset = 0;
#      32                 :            :         /* Run a little benchmark with capacity 32, adding 184 entries, and decoding 11 of them once. */
#      33         [ +  + ]:         50 :         for (int b = 0; b < 11; ++b) {
#      34         [ +  + ]:         46 :             if (!Minisketch::ImplementationSupported(BITS, impl)) break;
#      35                 :         44 :             Minisketch sketch(BITS, impl, 32);
#      36                 :         44 :             auto start = GetTimeMicros();
#      37         [ +  + ]:       4444 :             for (uint64_t e = 0; e < 100; ++e) {
#      38                 :       4400 :                 sketch.Add(e*1337 + b*13337 + offset);
#      39                 :       4400 :             }
#      40         [ +  + ]:       3740 :             for (uint64_t e = 0; e < 84; ++e) {
#      41                 :       3696 :                 sketch.Add(e*1337 + b*13337 + offset);
#      42                 :       3696 :             }
#      43                 :         44 :             offset += (*sketch.Decode(32))[0];
#      44                 :         44 :             auto stop = GetTimeMicros();
#      45                 :         44 :             benches.push_back(stop - start);
#      46                 :         44 :         }
#      47                 :            :         /* Remember which implementation has the best median benchmark time. */
#      48         [ +  + ]:          6 :         if (!benches.empty()) {
#      49                 :          4 :             std::sort(benches.begin(), benches.end());
#      50 [ +  + ][ +  - ]:          4 :             if (!best || best->first > benches[5]) {
#      51                 :          4 :                 best = std::make_pair(benches[5], impl);
#      52                 :          4 :             }
#      53                 :          4 :         }
#      54                 :          6 :     }
#      55                 :          2 :     assert(best.has_value());
#      56                 :          2 :     LogPrintf("Using Minisketch implementation number %i\n", best->second);
#      57                 :          2 :     return best->second;
#      58                 :          2 : }
#      59                 :            : 
#      60                 :            : uint32_t Minisketch32Implementation()
#      61                 :        800 : {
#      62                 :            :     // Fast compute-once idiom.
#      63                 :        800 :     static uint32_t best = FindBestImplementation();
#      64                 :        800 :     return best;
#      65                 :        800 : }
#      66                 :            : 
#      67                 :            : } // namespace
#      68                 :            : 
#      69                 :            : 
#      70                 :            : Minisketch MakeMinisketch32(size_t capacity)
#      71                 :        800 : {
#      72                 :        800 :     return Minisketch(BITS, Minisketch32Implementation(), capacity);
#      73                 :        800 : }
#      74                 :            : 
#      75                 :            : Minisketch MakeMinisketch32FP(size_t max_elements, uint32_t fpbits)
#      76                 :          0 : {
#      77                 :          0 :     return Minisketch::CreateFP(BITS, Minisketch32Implementation(), max_elements, fpbits);
#      78                 :          0 : }
#      79                 :            : } // namespace node

Generated by: LCOV version 0-eol-96201-ge66f56f4af6a