This repository has been archived by the owner on Dec 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathdimsum_x86_test.cc
98 lines (93 loc) · 3.27 KB
/
dimsum_x86_test.cc
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
// Copyright 2017 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "dimsum_x86.h"
#include <numeric>
#include "simulated.h"
#include "gtest/gtest.h"
namespace dimsum {
namespace {
TEST(DimsumX86Test, Maddubs) {
EXPECT_TRUE(
all_of(NativeSimd<int16>(510) ==
simulated::maddubs(NativeSimd<uint8>(255), NativeSimd<int8>(1))));
EXPECT_TRUE(
all_of(NativeSimd<int16>(510) ==
x86::maddubs(NativeSimd<uint8>(255), NativeSimd<int8>(1))));
EXPECT_TRUE(
all_of(NativeSimd<int16>(-510) ==
simulated::maddubs(NativeSimd<uint8>(255), NativeSimd<int8>(-1))));
EXPECT_TRUE(
all_of(NativeSimd<int16>(-510) ==
x86::maddubs(NativeSimd<uint8>(255), NativeSimd<int8>(-1))));
EXPECT_TRUE(all_of(
NativeSimd<int16>(32767) ==
simulated::maddubs(NativeSimd<uint8>(255), NativeSimd<int8>(127))));
EXPECT_TRUE(
all_of(NativeSimd<int16>(32767) ==
x86::maddubs(NativeSimd<uint8>(255), NativeSimd<int8>(127))));
EXPECT_TRUE(all_of(
NativeSimd<int16>(-32768) ==
simulated::maddubs(NativeSimd<uint8>(255), NativeSimd<int8>(-128))));
EXPECT_TRUE(
all_of(NativeSimd<int16>(-32768) ==
x86::maddubs(NativeSimd<uint8>(255), NativeSimd<int8>(-128))));
EXPECT_TRUE(all_of(
NativeSimd<int16>(32258) ==
simulated::maddubs(NativeSimd<uint8>(127), NativeSimd<int8>(127))));
EXPECT_TRUE(
all_of(NativeSimd<int16>(32258) ==
x86::maddubs(NativeSimd<uint8>(127), NativeSimd<int8>(127))));
}
TEST(DimsumX86Test, Movemask) {
{
auto a = NativeSimd<int16>(1);
EXPECT_EQ(0, simulated::movemask(a));
EXPECT_EQ(0, x86::movemask(a));
a[0] = -32768;
EXPECT_EQ(1, simulated::movemask(a));
EXPECT_EQ(1, x86::movemask(a));
a[1] = -32768;
EXPECT_EQ(3, simulated::movemask(a));
EXPECT_EQ(3, x86::movemask(a));
}
{
auto a = NativeSimd<int8>(-2);
// There are no _mm512_movemask_epi8 so a.size() cannot be 64.
if (a.size() == 16) {
EXPECT_EQ(65536 - 1, simulated::movemask(a));
EXPECT_EQ(65536 - 1, x86::movemask(a));
a[0] = 0;
EXPECT_EQ(65536 - 2, simulated::movemask(a));
EXPECT_EQ(65536 - 2, x86::movemask(a));
} else if (a.size() == 32) {
EXPECT_EQ(-1, simulated::movemask(a));
EXPECT_EQ(-1, x86::movemask(a));
a[0] = 0;
EXPECT_EQ(-2, simulated::movemask(a));
EXPECT_EQ(-2, x86::movemask(a));
}
}
{
auto a = NativeSimd<int32>(-2);
EXPECT_EQ((1 << a.size()) - 1, simulated::movemask(a));
EXPECT_EQ((1 << a.size()) - 1, x86::movemask(a));
}
{
auto a = NativeSimd<uint64>(-3);
EXPECT_EQ((1 << a.size()) - 1, simulated::movemask(a));
EXPECT_EQ((1 << a.size()) - 1, x86::movemask(a));
}
}
} // namespace
} // namespace dimsum