aboutsummaryrefslogtreecommitdiff
path: root/bench/tests/BenchVec.c
blob: e760748dd17baf7dcdd8cdd717df75122fe80cc7 (plain)
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
#include <BH/Bench.h>

#include <BH/Math/Vec2i.h>
#include <BH/Math/Vec3i.h>
#include <BH/Math/Vec4i.h>
#include <BH/Math/Vec2f.h>
#include <BH/Math/Vec3f.h>
#include <BH/Math/Vec4f.h>
#include <stdlib.h>


BH_BENCH_TEST(Vec2i)
{
    int a[2], b[2];

    a[0] = (rand() % 100);
    a[1] = (rand() % 100);

    b[0] = (rand() % 100);
    b[1] = (rand() % 100);

    while (BH_BenchIter(state))
    {
        BH_Vec2iAdd(a, b, a);
    }
}


BH_BENCH_TEST(Vec3i)
{
    int a[3], b[3];

    a[0] = (rand() % 100);
    a[1] = (rand() % 100);
    a[2] = (rand() % 100);

    b[0] = (rand() % 100);
    b[1] = (rand() % 100);
    b[2] = (rand() % 100);

    while (BH_BenchIter(state))
    {
        BH_Vec3iAdd(a, b, a);
    }
}


BH_BENCH_TEST(Vec4i)
{
    int a[4], b[4];

    a[0] = (rand() % 100);
    a[1] = (rand() % 100);
    a[2] = (rand() % 100);
    a[3] = (rand() % 100);

    b[0] = (rand() % 100);
    b[1] = (rand() % 100);
    b[2] = (rand() % 100);
    b[3] = (rand() % 100);

    while (BH_BenchIter(state))
    {
        BH_Vec4iAdd(a, b, a);
    }
}


BH_BENCH_TEST(Vec2f)
{
    float a[2], b[2];

    a[0] = (rand() % 100) / 200.0;
    a[1] = (rand() % 100) / 200.0;

    b[0] = (rand() % 100) / 200.0;
    b[1] = (rand() % 100) / 200.0;

    while (BH_BenchIter(state))
    {
        BH_Vec2fAdd(a, b, a);
    }
}


BH_BENCH_TEST(Vec3f)
{
    float a[3], b[3];

    a[0] = (rand() % 100) / 200.0;
    a[1] = (rand() % 100) / 200.0;
    a[2] = (rand() % 100) / 200.0;

    b[0] = (rand() % 100) / 200.0;
    b[1] = (rand() % 100) / 200.0;
    b[2] = (rand() % 100) / 200.0;

    while (BH_BenchIter(state))
    {
        BH_Vec3fAdd(a, b, a);
    }
}


BH_BENCH_TEST(Vec4f)
{
    float a[4], b[4];

    a[0] = (rand() % 100) / 200.0;
    a[1] = (rand() % 100) / 200.0;
    a[2] = (rand() % 100) / 200.0;
    a[3] = (rand() % 100) / 200.0;

    b[0] = (rand() % 100) / 200.0;
    b[1] = (rand() % 100) / 200.0;
    b[2] = (rand() % 100) / 200.0;
    b[3] = (rand() % 100) / 200.0;

    while (BH_BenchIter(state))
    {
        BH_Vec4fAdd(a, b, a);
    }
}


int main(int argc, char **argv)
{
    BH_UNUSED(argc);
    BH_UNUSED(argv);

    BH_BENCH_ADD(Vec2i);
    BH_BENCH_ADD(Vec3i);
    BH_BENCH_ADD(Vec4i);
    BH_BENCH_ADD(Vec2f);
    BH_BENCH_ADD(Vec3f);
    BH_BENCH_ADD(Vec4f);

    return BH_BenchRun();
}