File: test_transform_reduce.cpp

package info (click to toggle)
boost1.90 1.90.0-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 593,120 kB
  • sloc: cpp: 4,190,908; xml: 196,648; python: 34,618; ansic: 23,145; asm: 5,468; sh: 3,774; makefile: 1,161; perl: 1,020; sql: 728; ruby: 676; yacc: 478; java: 77; lisp: 24; csh: 6
file content (101 lines) | stat: -rw-r--r-- 2,660 bytes parent folder | download | duplicates (18)
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
//---------------------------------------------------------------------------//
// Copyright (c) 2013 Kyle Lutz <kyle.r.lutz@gmail.com>
//
// Distributed under the Boost Software License, Version 1.0
// See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
//
// See http://boostorg.github.com/compute for more information.
//---------------------------------------------------------------------------//

#define BOOST_TEST_MODULE TestTransformReduce
#include <boost/test/unit_test.hpp>

#include <boost/compute/lambda.hpp>
#include <boost/compute/system.hpp>
#include <boost/compute/functional.hpp>
#include <boost/compute/algorithm/transform_reduce.hpp>
#include <boost/compute/container/vector.hpp>

#include "context_setup.hpp"

namespace compute = boost::compute;

BOOST_AUTO_TEST_CASE(sum_abs_int_doctest)
{
    using boost::compute::abs;
    using boost::compute::plus;

    int data[] = { 1, -2, -3, -4, 5 };
    compute::vector<int> vec(data, data + 5, queue);

//! [sum_abs_int]
int sum = 0;
boost::compute::transform_reduce(
    vec.begin(), vec.end(), &sum, abs<int>(), plus<int>(), queue
);
//! [sum_abs_int]

    BOOST_CHECK_EQUAL(sum, 15);
}

BOOST_AUTO_TEST_CASE(multiply_vector_length)
{
    float data[] = { 2.0f, 0.0f, 0.0f, 0.0f,
                     0.0f, 3.0f, 0.0f, 0.0f,
                     0.0f, 0.0f, 4.0f, 0.0f };
    compute::vector<compute::float4_> vector(
        reinterpret_cast<compute::float4_ *>(data),
        reinterpret_cast<compute::float4_ *>(data) + 3,
        queue
    );

    float product;
    compute::transform_reduce(
        vector.begin(),
        vector.end(),
        &product,
        compute::length<compute::float4_>(),
        compute::multiplies<float>(),
        queue
    );
    BOOST_CHECK_CLOSE(product, 24.0f, 1e-4f);
}

BOOST_AUTO_TEST_CASE(mean_and_std_dev)
{
    using compute::lambda::_1;
    using compute::lambda::pow;

    float data[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
    compute::vector<float> vector(data, data + 10, queue);

    float sum;
    compute::reduce(
        vector.begin(),
        vector.end(),
        &sum,
        compute::plus<float>(),
        queue
    );

    float mean = sum / vector.size();
    BOOST_CHECK_CLOSE(mean, 5.5f, 1e-4);

    compute::transform_reduce(
        vector.begin(),
        vector.end(),
        &sum,
        pow(_1 - mean, 2),
        compute::plus<float>(),
        queue
    );

    float variance = sum / vector.size();
    BOOST_CHECK_CLOSE(variance, 8.25f, 1e-4);

    float std_dev = std::sqrt(variance);
    BOOST_CHECK_CLOSE(std_dev, 2.8722813232690143, 1e-4);
}

BOOST_AUTO_TEST_SUITE_END()