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
|
/***************************************************************************
* Copyright (c) 2016, Johan Mabille, Sylvain Corlay and Wolf Vollprecht *
* *
* Distributed under the terms of the BSD 3-Clause License. *
* *
* The full license is in the file LICENSE, distributed with this software. *
****************************************************************************/
#include <chrono>
#include <cstddef>
#include <string>
#include <benchmark/benchmark.h>
#include "xtensor/xarray.hpp"
#include "xtensor/xtensor.hpp"
namespace xt
{
namespace axpy_1d
{
// BENCHMARK Initialization
template <class E>
inline void init_benchmark(E& x, E& y, E& res, typename E::size_type size)
{
x.resize({size});
y.resize({size});
res.resize({size});
using value_type = typename E::value_type;
using size_type = typename E::size_type;
for (size_type i = 0; i < size; ++i)
{
x(i) = 0.5 + value_type(i);
y(i) = 0.25 * value_type(i);
}
}
template <class E>
inline auto container_iteration(benchmark::State& state)
{
using value_type = typename E::value_type;
E x, y, res;
init_benchmark(x, y, res, state.range(0));
value_type a = value_type(2.7);
for (auto _ : state)
{
auto iterx = x.begin();
auto itery = y.begin();
for (auto iter = res.begin(); iter != res.end(); ++iter, ++iterx, ++itery)
{
*iter = a * (*iterx) + (*itery);
}
}
}
BENCHMARK_TEMPLATE(container_iteration, xarray_container<std::vector<double>>)->Arg(1000);
BENCHMARK_TEMPLATE(container_iteration, xarray_container<xt::uvector<double>>)->Arg(1000);
BENCHMARK_TEMPLATE(container_iteration, xtensor_container<std::vector<double>, 1>)->Arg(1000);
BENCHMARK_TEMPLATE(container_iteration, xtensor_container<xt::uvector<double>, 1>)->Arg(1000);
template <class E>
inline auto container_xiteration(benchmark::State& state)
{
using value_type = typename E::value_type;
E x, y, res;
init_benchmark(x, y, res, state.range(0));
value_type a = value_type(2.7);
for (auto _ : state)
{
auto iterx = x.begin();
auto itery = y.begin();
for (auto iter = res.begin(); iter != res.end(); ++iter, ++iterx, ++itery)
{
*iter = a * (*iterx) + (*itery);
}
}
}
BENCHMARK_TEMPLATE(container_xiteration, xarray_container<std::vector<double>>)->Arg(1000);
BENCHMARK_TEMPLATE(container_xiteration, xarray_container<xt::uvector<double>>)->Arg(1000);
BENCHMARK_TEMPLATE(container_xiteration, xtensor_container<std::vector<double>, 1>)->Arg(1000);
BENCHMARK_TEMPLATE(container_xiteration, xtensor_container<xt::uvector<double>, 1>)->Arg(1000);
template <class E>
inline auto container_indexing(benchmark::State& state)
{
using size_type = typename E::size_type;
using value_type = typename E::value_type;
E x, y, res;
init_benchmark(x, y, res, state.range(0));
value_type a = value_type(2.7);
for (auto _ : state)
{
size_type n = x.size();
for (size_type i = 0; i < n; ++i)
{
res(i) = a * x(i) + y(i);
}
}
}
BENCHMARK_TEMPLATE(container_indexing, xarray_container<std::vector<double>>)->Arg(1000);
BENCHMARK_TEMPLATE(container_indexing, xarray_container<xt::uvector<double>>)->Arg(1000);
BENCHMARK_TEMPLATE(container_indexing, xtensor_container<std::vector<double>, 1>)->Arg(1000);
BENCHMARK_TEMPLATE(container_indexing, xtensor_container<xt::uvector<double>, 1>)->Arg(1000);
}
}
|