summaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/hwaccelrated/hwaccelrated_test.cpp
blob: 421f3f6f520335028794ba2da703ef1006e60bb9 (plain) (blame)
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
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <vespa/vespalib/testkit/test_kit.h>
#include <vespa/vespalib/hwaccelrated/iaccelrated.h>
#include <vespa/vespalib/hwaccelrated/generic.h>

using namespace vespalib;

template<typename T>
std::vector<T> createAndFill(size_t sz) {
    std::vector<T> v(sz);
    for (size_t i(0); i < sz; i++) {
        v[i] = rand()%500;
    }
    return v;
}

template<typename T>
void verifyEuclideanDistance(const hwaccelrated::IAccelrated & accel) {
    const size_t testLength(255);
    srand(1);
    std::vector<T> a = createAndFill<T>(testLength);
    std::vector<T> b = createAndFill<T>(testLength);
    for (size_t j(0); j < 0x20; j++) {
        T sum(0);
        for (size_t i(j); i < testLength; i++) {
            sum += (a[i] - b[i]) * (a[i] - b[i]);
        }
        T hwComputedSum(accel.squaredEuclideanDistance(&a[j], &b[j], testLength - j));
        EXPECT_EQUAL(sum, hwComputedSum);
    }
}

TEST("test euclidean distance") {
    hwaccelrated::GenericAccelrator genericAccelrator;
    verifyEuclideanDistance<float>(genericAccelrator);
    verifyEuclideanDistance<double >(genericAccelrator);
}

TEST_MAIN() { TEST_RUN_ALL(); }