Welcome to mirror list, hosted at ThFree Co, Russian Federation.

relu_test.cc « test - github.com/marian-nmt/intgemm/intgemm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 264cd5a38fb0105722c7e6fec3b678b6bf4b70a2 (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
#include "3rd_party/catch.hpp"
#include "cops.h"

#include <numeric>

namespace intgemm {

INTGEMM_SSE2 TEST_CASE("ReLU SSE2",) {
  if (kCPU < CPU_SSE2)
    return;
  const unsigned N = 4;

  int32_t raw_input[2 * N];
  std::iota(raw_input, raw_input + 2 * N, -2);

  MultiplyResult128 input;
  input.pack0123 = *reinterpret_cast<__m128i*>(raw_input);
  input.pack4567 = *reinterpret_cast<__m128i*>(raw_input + N);

  float output[2 * N];
  std::fill(output, output + 2 * N, 42);

  auto postproc = ReLU::OnSSE2(ReLU(output, 1.f));
  postproc(0, 1, 0, input);

  CHECK(output[0] == 0.f); // input = -2
  CHECK(output[1] == 0.f); // input = -1
  CHECK(output[2] == 0.f); // input =  0
  CHECK(output[3] == 1.f); // input =  1
  CHECK(output[4] == 2.f); // input =  2
  CHECK(output[5] == 3.f); // input =  3
  CHECK(output[6] == 4.f); // input =  4
  CHECK(output[7] == 5.f); // input =  5
}

INTGEMM_AVX2 TEST_CASE("ReLU AVX2",) {
  if (kCPU < CPU_AVX2)
    return;

  const unsigned N = 8;

  int32_t raw_input[N];
  std::iota(raw_input, raw_input + N, -4);

  auto input = *reinterpret_cast<__m256i*>(raw_input);

  float output[N];
  std::fill(output, output + N, 42);

  auto postproc = ReLU::OnAVX2(ReLU(output, 1.f));
  postproc(0, 1, 0, input);

  CHECK(output[0] == 0.f); // input = -4
  CHECK(output[1] == 0.f); // input = -3
  CHECK(output[2] == 0.f); // input = -2
  CHECK(output[3] == 0.f); // input = -1
  CHECK(output[4] == 0.f); // input =  0
  CHECK(output[5] == 1.f); // input =  1
  CHECK(output[6] == 2.f); // input =  2
  CHECK(output[7] == 3.f); // input =  3
}

#ifndef INTGEMM_NO_AVX512

INTGEMM_AVX512BW TEST_CASE("ReLU AVX512",) {
  if (kCPU < CPU_AVX512BW)
    return;

  const unsigned N = 16;

  int32_t raw_input[N];
  std::iota(raw_input, raw_input + N, -8);

  auto input = *reinterpret_cast<__m512i*>(raw_input);

  float output[N];
  std::fill(output, output + N, 42);

  auto postproc = ReLU::OnAVX512(ReLU(output, 1.f));
  postproc(0, 1, 0, input);

  CHECK(output[0]  == 0.f); // input = -8
  CHECK(output[1]  == 0.f); // input = -7
  CHECK(output[2]  == 0.f); // input = -6
  CHECK(output[3]  == 0.f); // input = -5
  CHECK(output[4]  == 0.f); // input = -4
  CHECK(output[5]  == 0.f); // input = -3
  CHECK(output[6]  == 0.f); // input = -2
  CHECK(output[7]  == 0.f); // input = -1
  CHECK(output[8]  == 0.f); // input =  0
  CHECK(output[9]  == 1.f); // input =  1
  CHECK(output[10] == 2.f); // input =  2
  CHECK(output[11] == 3.f); // input =  3
  CHECK(output[12] == 4.f); // input =  4
  CHECK(output[13] == 5.f); // input =  5
  CHECK(output[14] == 6.f); // input =  6
  CHECK(output[15] == 7.f); // input =  7
}

#endif

}