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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
// -----------------------------------------------------------------------------------------------------
// Copyright (c) 2006-2020, Knut Reinert & Freie Universität Berlin
// Copyright (c) 2016-2020, Knut Reinert & MPI für molekulare Genetik
// This file may be used, modified and/or redistributed under the terms of the 3-clause BSD-License
// shipped with this file and also available at: https://github.com/seqan/seqan3/blob/master/LICENSE.md
// -----------------------------------------------------------------------------------------------------
#include <sstream>
#include <string>
#include <benchmark/benchmark.h>
#include <seqan3/alphabet/nucleotide/rna4.hpp>
#include <seqan3/io/structure_file/input.hpp>
#include <seqan3/io/structure_file/output.hpp>
#include <seqan3/io/structure_file/format_vienna.hpp>
#include <seqan3/test/performance/sequence_generator.hpp>
#include <seqan3/test/performance/units.hpp>
#include <seqan3/test/seqan2.hpp>
#include <seqan3/range/views/persist.hpp>
#include <seqan3/range/views/to.hpp>
#include <seqan3/range/views/to_char.hpp>
#if SEQAN3_HAS_SEQAN2
#include <seqan/rna_io.h>
#endif
inline constexpr size_t iterations_per_run = 1024;
inline std::string const header{"seq foobar blobber"};
auto const sequence = seqan3::test::generate_sequence<seqan3::rna4>(474, 0, 0) |
seqan3::views::persist |
seqan3::views::to_char |
seqan3::views::to<std::string>;
inline std::string const structure
{
"(((((((..((((........)))).((((.........)))).....(((((.......))))))))))))......."
"(((((((..((((........)))).((((.........)))).....(((((.......))))))))))))......."
"(((((((..((((........)))).((((.........)))).....(((((.......))))))))))))......."
"(((((((..((((........)))).((((.........)))).....(((((.......))))))))))))......."
"(((((((..((((........)))).((((.........)))).....(((((.......))))))))))))......."
"(((((((..((((........)))).((((.........)))).....(((((.......))))))))))))......."
};
inline std::string const vienna_file = []()
{
std::string file{};
for (size_t idx = 0; idx < iterations_per_run; idx++)
file += "> " + header + "\n" + sequence + "\n" + structure + "\n";
return file;
}();
void write_seqan3(benchmark::State & state)
{
std::ostringstream ostream;
seqan3::structure_file_output fout{ostream, seqan3::format_vienna{}};
for (auto _ : state)
{
for (size_t idx = 0; idx < iterations_per_run; ++idx)
fout.emplace_back(sequence, header, structure);
}
ostream = std::ostringstream{};
fout.emplace_back(sequence, header, structure);
size_t bytes_per_run = ostream.str().size() * iterations_per_run;
state.counters["iterations_per_run"] = iterations_per_run;
state.counters["bytes_per_run"] = bytes_per_run;
state.counters["bytes_per_second"] = seqan3::test::bytes_per_second(bytes_per_run);
}
BENCHMARK(write_seqan3);
#if SEQAN3_HAS_SEQAN2
void write_seqan2(benchmark::State & state)
{
std::ostringstream ostream;
seqan::RnaRecord record{};
record.name = header;
record.sequence = sequence;
seqan::bracket2graph(record.fixedGraphs, structure);
for (auto _ : state)
{
for (size_t idx = 0; idx < iterations_per_run; ++idx)
seqan::writeRecord(ostream, record, seqan::Vienna());
}
ostream = std::ostringstream{};
seqan::writeRecord(ostream, record, seqan::Vienna());
size_t bytes_per_run = ostream.str().size() * iterations_per_run;
state.counters["iterations_per_run"] = iterations_per_run;
state.counters["bytes_per_run"] = bytes_per_run;
state.counters["bytes_per_second"] = seqan3::test::bytes_per_second(bytes_per_run);
}
BENCHMARK(write_seqan2);
#endif
void read_seqan3(benchmark::State & state)
{
std::istringstream istream{vienna_file};
seqan3::structure_file_input fin{istream, seqan3::format_vienna{}};
for (auto _ : state)
{
istream.clear();
istream.seekg(0, std::ios::beg);
auto it = fin.begin();
for (size_t idx = 0; idx < iterations_per_run; ++idx)
it++;
}
size_t bytes_per_run = vienna_file.size();
state.counters["iterations_per_run"] = iterations_per_run;
state.counters["bytes_per_run"] = bytes_per_run;
state.counters["bytes_per_second"] = seqan3::test::bytes_per_second(bytes_per_run);
}
BENCHMARK(read_seqan3);
#if SEQAN3_HAS_SEQAN2
void read_seqan2(benchmark::State & state)
{
seqan::RnaRecord record{};
std::istringstream istream{vienna_file};
for (auto _ : state)
{
istream.clear();
istream.seekg(0, std::ios::beg);
auto it = seqan::Iter<std::istringstream, seqan::StreamIterator<seqan::Input>>(istream);
for (size_t idx = 0; idx < iterations_per_run; ++idx)
{
seqan::readRecord(record, it, seqan::Vienna());
clear(record);
}
}
size_t bytes_per_run = vienna_file.size();
state.counters["iterations_per_run"] = iterations_per_run;
state.counters["bytes_per_run"] = bytes_per_run;
state.counters["bytes_per_second"] = seqan3::test::bytes_per_second(bytes_per_run);
}
BENCHMARK(read_seqan2);
#endif
BENCHMARK_MAIN();
|