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 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
|
/*
* This file is a part of Luminance HDR package
* ----------------------------------------------------------------------
* Copyright (C) 2012 Davide Anastasia
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* ----------------------------------------------------------------------
*/
#include <gtest/gtest.h>
#include <iostream>
#include <cmath>
#include "arch/math.h"
#include <cstddef>
#include <stdint.h>
#include <algorithm>
#include <numeric>
#include <functional>
#include <Libpfs/utils/numeric.h>
#include <boost/assign/std/vector.hpp> // for 'operator+=()'
#include <boost/math/constants/constants.hpp>
using namespace std;
template <typename T>
struct FillValue;
template<>
struct FillValue<float>
{
float operator()() { return (static_cast<float>(rand())/RAND_MAX)*2.f - 1.f; }
};
template<>
struct FillValue<uint8_t>
{
uint8_t operator()() { return (static_cast<uint8_t>(rand())%255) + 1; }
};
template<>
struct FillValue<uint16_t>
{
uint16_t operator()() { return (static_cast<uint16_t>(rand())%255) + 1; }
};
template<>
struct FillValue<int32_t>
{
int32_t operator()() {
int32_t v = static_cast<int32_t>(rand())%256 - 128;
return (!v) ? 1 : v;
}
};
template<typename T>
T getConst();
template<>
float getConst<float>() { return static_cast<float>(boost::math::double_constants::pi); }
template<>
uint8_t getConst<uint8_t>() { return 3u; }
template<>
uint16_t getConst<uint16_t>() { return 3u; }
template<>
int32_t getConst<int32_t>() { return 5; }
template <typename T>
struct SmallSize
{
typedef T value_type;
static size_t elements() { return static_cast<size_t>(1e6); } // 1Mp
};
template <typename T>
struct MediumSize
{
typedef T value_type;
static size_t elements() { return static_cast<size_t>(1e7); } // 10Mp
};
template <typename T>
struct BigSize
{
typedef T value_type;
static size_t elements() { return static_cast<size_t>(24e6); } // 24Mp
};
template <class T>
class TestVex : public testing::Test
{
protected:
typedef typename T::value_type ValueType;
typedef std::vector< ValueType > TestVexContainer;
TestVexContainer input1;
TestVexContainer input2;
TestVexContainer outputReference;
TestVexContainer outputComputed;
ValueType s_;
TestVex()
: input1( T::elements() )
, input2( T::elements() )
, outputReference( T::elements() )
, outputComputed( T::elements() )
, s_(getConst<ValueType>())
{
std::generate(input1.begin(), input1.end(), FillValue<ValueType>());
std::generate(input2.begin(), input2.end(), FillValue<ValueType>());
std::fill(outputReference.begin(), outputReference.end(), ValueType());
std::fill(outputComputed.begin(), outputComputed.end(), ValueType());
}
void compareResult()
{
for (size_t idx = 0; idx < this->outputComputed.size(); ++idx)
{
if ( this->outputComputed[idx] != this->outputReference[idx])
{
EXPECT_NEAR(this->outputComputed[idx],
this->outputReference[idx],
10e-9);
}
}
}
void computeVmul()
{
std::transform(this->input1.begin(),
this->input1.end(),
this->input2.begin(),
this->outputReference.begin(),
std::multiplies<ValueType>());
}
void computeVdiv()
{
std::transform(this->input1.begin(),
this->input1.end(),
this->input2.begin(),
this->outputReference.begin(),
std::divides<ValueType>());
}
void computeVadd()
{
std::transform(this->input1.begin(),
this->input1.end(),
this->input2.begin(),
this->outputReference.begin(),
std::plus<ValueType>());
}
void computeVadds()
{
std::transform(this->input1.begin(),
this->input1.end(),
this->input2.begin(),
this->outputReference.begin(),
pfs::utils::numeric::vadds<ValueType>(s_));
}
void computeVsub()
{
std::transform(this->input1.begin(),
this->input1.end(),
this->input2.begin(),
this->outputReference.begin(),
std::minus<ValueType>());
}
void computeVsubs()
{
std::transform(this->input1.begin(),
this->input1.end(),
this->input2.begin(),
this->outputReference.begin(),
pfs::utils::numeric::vsubs<ValueType>(s_));
}
void compareTime(double timeOld, double timeNew)
{
std::cout << "Speed up: " << timeOld/timeNew << std::endl;
}
};
using testing::Types;
// The list of types we want to test.
typedef testing::Types<
SmallSize<float>,
SmallSize<uint8_t>,
SmallSize<uint16_t>,
SmallSize<int32_t>,
MediumSize<float>,
MediumSize<uint8_t>,
MediumSize<uint16_t>,
MediumSize<int32_t>,
BigSize<float>,
BigSize<uint8_t>,
BigSize<uint16_t>,
BigSize<int32_t> > Implementations;
TYPED_TEST_CASE(TestVex, Implementations);
TYPED_TEST(TestVex, vmul)
{
pfs::utils::vmul(this->input1.data(),
this->input2.data(),
this->outputComputed.data(),
this->outputComputed.size());
this->computeVmul();
this->compareResult();
}
TYPED_TEST(TestVex, vdiv)
{
pfs::utils::vdiv(this->input1.data(),
this->input2.data(),
this->outputComputed.data(),
this->outputComputed.size());
this->computeVdiv();
this->compareResult();
}
TYPED_TEST(TestVex, vadd)
{
pfs::utils::vadd(this->input1.data(),
this->input2.data(),
this->outputComputed.data(),
this->outputComputed.size());
this->computeVadd();
this->compareResult();
}
TYPED_TEST(TestVex, vadds)
{
pfs::utils::vadds(this->input1.data(),
this->s_,
this->input2.data(),
this->outputComputed.data(),
this->outputComputed.size());
this->computeVadds();
this->compareResult();
}
TYPED_TEST(TestVex, vsub)
{
pfs::utils::vsub(this->input1.data(),
this->input2.data(),
this->outputComputed.data(),
this->outputComputed.size());
this->computeVsub();
this->compareResult();
}
TYPED_TEST(TestVex, vsubs)
{
pfs::utils::vsubs(this->input1.data(),
this->s_,
this->input2.data(),
this->outputComputed.data(),
this->outputComputed.size());
this->computeVsubs();
this->compareResult();
}
|