]> git.sesse.net Git - stockfish/blob - src/nnue/nnue_feature_transformer.h
Fix compilation after recent merge.
[stockfish] / src / nnue / nnue_feature_transformer.h
1 /*
2   Stockfish, a UCI chess playing engine derived from Glaurung 2.1
3   Copyright (C) 2004-2022 The Stockfish developers (see AUTHORS file)
4
5   Stockfish is free software: you can redistribute it and/or modify
6   it under the terms of the GNU General Public License as published by
7   the Free Software Foundation, either version 3 of the License, or
8   (at your option) any later version.
9
10   Stockfish is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   GNU General Public License for more details.
14
15   You should have received a copy of the GNU General Public License
16   along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 // A class that converts the input features of the NNUE evaluation function
20
21 #ifndef NNUE_FEATURE_TRANSFORMER_H_INCLUDED
22 #define NNUE_FEATURE_TRANSFORMER_H_INCLUDED
23
24 #include "nnue_common.h"
25 #include "nnue_architecture.h"
26
27 #include <cstring> // std::memset()
28
29 namespace Stockfish::Eval::NNUE {
30
31   using BiasType       = std::int16_t;
32   using WeightType     = std::int16_t;
33   using PSQTWeightType = std::int32_t;
34
35   // If vector instructions are enabled, we update and refresh the
36   // accumulator tile by tile such that each tile fits in the CPU's
37   // vector registers.
38   #define VECTOR
39
40   static_assert(PSQTBuckets % 8 == 0,
41     "Per feature PSQT values cannot be processed at granularity lower than 8 at a time.");
42
43   #ifdef USE_AVX512
44   typedef __m512i vec_t;
45   typedef __m256i psqt_vec_t;
46   #define vec_load(a) _mm512_load_si512(a)
47   #define vec_store(a,b) _mm512_store_si512(a,b)
48   #define vec_add_16(a,b) _mm512_add_epi16(a,b)
49   #define vec_sub_16(a,b) _mm512_sub_epi16(a,b)
50   #define vec_load_psqt(a) _mm256_load_si256(a)
51   #define vec_store_psqt(a,b) _mm256_store_si256(a,b)
52   #define vec_add_psqt_32(a,b) _mm256_add_epi32(a,b)
53   #define vec_sub_psqt_32(a,b) _mm256_sub_epi32(a,b)
54   #define vec_zero_psqt() _mm256_setzero_si256()
55   #define NumRegistersSIMD 32
56
57   #elif USE_AVX2
58   typedef __m256i vec_t;
59   typedef __m256i psqt_vec_t;
60   #define vec_load(a) _mm256_load_si256(a)
61   #define vec_store(a,b) _mm256_store_si256(a,b)
62   #define vec_add_16(a,b) _mm256_add_epi16(a,b)
63   #define vec_sub_16(a,b) _mm256_sub_epi16(a,b)
64   #define vec_load_psqt(a) _mm256_load_si256(a)
65   #define vec_store_psqt(a,b) _mm256_store_si256(a,b)
66   #define vec_add_psqt_32(a,b) _mm256_add_epi32(a,b)
67   #define vec_sub_psqt_32(a,b) _mm256_sub_epi32(a,b)
68   #define vec_zero_psqt() _mm256_setzero_si256()
69   #define NumRegistersSIMD 16
70
71   #elif USE_SSE2
72   typedef __m128i vec_t;
73   typedef __m128i psqt_vec_t;
74   #define vec_load(a) (*(a))
75   #define vec_store(a,b) *(a)=(b)
76   #define vec_add_16(a,b) _mm_add_epi16(a,b)
77   #define vec_sub_16(a,b) _mm_sub_epi16(a,b)
78   #define vec_load_psqt(a) (*(a))
79   #define vec_store_psqt(a,b) *(a)=(b)
80   #define vec_add_psqt_32(a,b) _mm_add_epi32(a,b)
81   #define vec_sub_psqt_32(a,b) _mm_sub_epi32(a,b)
82   #define vec_zero_psqt() _mm_setzero_si128()
83   #define NumRegistersSIMD (Is64Bit ? 16 : 8)
84
85   #elif USE_MMX
86   typedef __m64 vec_t;
87   typedef __m64 psqt_vec_t;
88   #define vec_load(a) (*(a))
89   #define vec_store(a,b) *(a)=(b)
90   #define vec_add_16(a,b) _mm_add_pi16(a,b)
91   #define vec_sub_16(a,b) _mm_sub_pi16(a,b)
92   #define vec_load_psqt(a) (*(a))
93   #define vec_store_psqt(a,b) *(a)=(b)
94   #define vec_add_psqt_32(a,b) _mm_add_pi32(a,b)
95   #define vec_sub_psqt_32(a,b) _mm_sub_pi32(a,b)
96   #define vec_zero_psqt() _mm_setzero_si64()
97   #define NumRegistersSIMD 8
98
99   #elif USE_NEON
100   typedef int16x8_t vec_t;
101   typedef int32x4_t psqt_vec_t;
102   #define vec_load(a) (*(a))
103   #define vec_store(a,b) *(a)=(b)
104   #define vec_add_16(a,b) vaddq_s16(a,b)
105   #define vec_sub_16(a,b) vsubq_s16(a,b)
106   #define vec_load_psqt(a) (*(a))
107   #define vec_store_psqt(a,b) *(a)=(b)
108   #define vec_add_psqt_32(a,b) vaddq_s32(a,b)
109   #define vec_sub_psqt_32(a,b) vsubq_s32(a,b)
110   #define vec_zero_psqt() psqt_vec_t{0}
111   #define NumRegistersSIMD 16
112
113   #else
114   #undef VECTOR
115
116   #endif
117
118
119   #ifdef VECTOR
120
121       // Compute optimal SIMD register count for feature transformer accumulation.
122
123       // We use __m* types as template arguments, which causes GCC to emit warnings
124       // about losing some attribute information. This is irrelevant to us as we
125       // only take their size, so the following pragma are harmless.
126       #pragma GCC diagnostic push
127       #pragma GCC diagnostic ignored "-Wignored-attributes"
128
129       template <typename SIMDRegisterType,
130                 typename LaneType,
131                 int      NumLanes,
132                 int      MaxRegisters>
133       static constexpr int BestRegisterCount()
134       {
135           #define RegisterSize  sizeof(SIMDRegisterType)
136           #define LaneSize      sizeof(LaneType)
137
138           static_assert(RegisterSize >= LaneSize);
139           static_assert(MaxRegisters <= NumRegistersSIMD);
140           static_assert(MaxRegisters > 0);
141           static_assert(NumRegistersSIMD > 0);
142           static_assert(RegisterSize % LaneSize == 0);
143           static_assert((NumLanes * LaneSize) % RegisterSize == 0);
144
145           const int ideal = (NumLanes * LaneSize) / RegisterSize;
146           if (ideal <= MaxRegisters)
147             return ideal;
148
149           // Look for the largest divisor of the ideal register count that is smaller than MaxRegisters
150           for (int divisor = MaxRegisters; divisor > 1; --divisor)
151             if (ideal % divisor == 0)
152               return divisor;
153
154           return 1;
155       }
156
157       static constexpr int NumRegs     = BestRegisterCount<vec_t, WeightType, TransformedFeatureDimensions, NumRegistersSIMD>();
158       static constexpr int NumPsqtRegs = BestRegisterCount<psqt_vec_t, PSQTWeightType, PSQTBuckets, NumRegistersSIMD>();
159
160       #pragma GCC diagnostic pop
161
162   #endif
163
164
165
166   // Input feature converter
167   class FeatureTransformer {
168
169    private:
170     // Number of output dimensions for one side
171     static constexpr IndexType HalfDimensions = TransformedFeatureDimensions;
172
173     #ifdef VECTOR
174     static constexpr IndexType TileHeight = NumRegs * sizeof(vec_t) / 2;
175     static constexpr IndexType PsqtTileHeight = NumPsqtRegs * sizeof(psqt_vec_t) / 4;
176     static_assert(HalfDimensions % TileHeight == 0, "TileHeight must divide HalfDimensions");
177     static_assert(PSQTBuckets % PsqtTileHeight == 0, "PsqtTileHeight must divide PSQTBuckets");
178     #endif
179
180    public:
181     // Output type
182     using OutputType = TransformedFeatureType;
183
184     // Number of input/output dimensions
185     static constexpr IndexType InputDimensions = FeatureSet::Dimensions;
186     static constexpr IndexType OutputDimensions = HalfDimensions * 2;
187
188     // Size of forward propagation buffer
189     static constexpr std::size_t BufferSize =
190         OutputDimensions * sizeof(OutputType);
191
192     // Hash value embedded in the evaluation file
193     static constexpr std::uint32_t get_hash_value() {
194       return FeatureSet::HashValue ^ OutputDimensions;
195     }
196
197     // Read network parameters
198     bool read_parameters(std::istream& stream) {
199
200       read_little_endian<BiasType      >(stream, biases     , HalfDimensions                  );
201       read_little_endian<WeightType    >(stream, weights    , HalfDimensions * InputDimensions);
202       read_little_endian<PSQTWeightType>(stream, psqtWeights, PSQTBuckets    * InputDimensions);
203
204       return !stream.fail();
205     }
206
207     // Write network parameters
208     bool write_parameters(std::ostream& stream) const {
209
210       write_little_endian<BiasType      >(stream, biases     , HalfDimensions                  );
211       write_little_endian<WeightType    >(stream, weights    , HalfDimensions * InputDimensions);
212       write_little_endian<PSQTWeightType>(stream, psqtWeights, PSQTBuckets    * InputDimensions);
213
214       return !stream.fail();
215     }
216
217     // Convert input features
218     std::int32_t transform(const Position& pos, OutputType* output, int bucket) const {
219       update_accumulator(pos, WHITE);
220       update_accumulator(pos, BLACK);
221
222       const Color perspectives[2] = {pos.side_to_move(), ~pos.side_to_move()};
223       const auto& accumulation = pos.state()->accumulator.accumulation;
224       const auto& psqtAccumulation = pos.state()->accumulator.psqtAccumulation;
225
226       const auto psqt = (
227             psqtAccumulation[perspectives[0]][bucket]
228           - psqtAccumulation[perspectives[1]][bucket]
229         ) / 2;
230
231
232   #if defined(USE_AVX512)
233
234       constexpr IndexType NumChunks = HalfDimensions / (SimdWidth * 2);
235       static_assert(HalfDimensions % (SimdWidth * 2) == 0);
236       const __m512i Control = _mm512_setr_epi64(0, 2, 4, 6, 1, 3, 5, 7);
237       const __m512i Zero = _mm512_setzero_si512();
238
239       for (IndexType p = 0; p < 2; ++p)
240       {
241           const IndexType offset = HalfDimensions * p;
242           auto out = reinterpret_cast<__m512i*>(&output[offset]);
243           for (IndexType j = 0; j < NumChunks; ++j)
244           {
245               __m512i sum0 = _mm512_load_si512(&reinterpret_cast<const __m512i*>
246                                               (accumulation[perspectives[p]])[j * 2 + 0]);
247               __m512i sum1 = _mm512_load_si512(&reinterpret_cast<const __m512i*>
248                                               (accumulation[perspectives[p]])[j * 2 + 1]);
249
250               _mm512_store_si512(&out[j], _mm512_permutexvar_epi64(Control,
251                                  _mm512_max_epi8(_mm512_packs_epi16(sum0, sum1), Zero)));
252           }
253       }
254       return psqt;
255
256   #elif defined(USE_AVX2)
257
258       constexpr IndexType NumChunks = HalfDimensions / SimdWidth;
259       constexpr int Control = 0b11011000;
260       const __m256i Zero = _mm256_setzero_si256();
261
262       for (IndexType p = 0; p < 2; ++p)
263       {
264           const IndexType offset = HalfDimensions * p;
265           auto out = reinterpret_cast<__m256i*>(&output[offset]);
266           for (IndexType j = 0; j < NumChunks; ++j)
267           {
268               __m256i sum0 = _mm256_load_si256(&reinterpret_cast<const __m256i*>
269                                               (accumulation[perspectives[p]])[j * 2 + 0]);
270               __m256i sum1 = _mm256_load_si256(&reinterpret_cast<const __m256i*>
271                                               (accumulation[perspectives[p]])[j * 2 + 1]);
272
273               _mm256_store_si256(&out[j], _mm256_permute4x64_epi64(
274                                  _mm256_max_epi8(_mm256_packs_epi16(sum0, sum1), Zero), Control));
275           }
276       }
277       return psqt;
278
279   #elif defined(USE_SSE2)
280
281       #ifdef USE_SSE41
282       constexpr IndexType NumChunks = HalfDimensions / SimdWidth;
283       const __m128i Zero = _mm_setzero_si128();
284       #else
285       constexpr IndexType NumChunks = HalfDimensions / SimdWidth;
286       const __m128i k0x80s = _mm_set1_epi8(-128);
287       #endif
288
289       for (IndexType p = 0; p < 2; ++p)
290       {
291           const IndexType offset = HalfDimensions * p;
292           auto out = reinterpret_cast<__m128i*>(&output[offset]);
293           for (IndexType j = 0; j < NumChunks; ++j)
294           {
295               __m128i sum0 = _mm_load_si128(&reinterpret_cast<const __m128i*>
296                                            (accumulation[perspectives[p]])[j * 2 + 0]);
297               __m128i sum1 = _mm_load_si128(&reinterpret_cast<const __m128i*>
298                                            (accumulation[perspectives[p]])[j * 2 + 1]);
299               const __m128i packedbytes = _mm_packs_epi16(sum0, sum1);
300
301               #ifdef USE_SSE41
302               _mm_store_si128(&out[j], _mm_max_epi8(packedbytes, Zero));
303               #else
304               _mm_store_si128(&out[j], _mm_subs_epi8(_mm_adds_epi8(packedbytes, k0x80s), k0x80s));
305               #endif
306           }
307       }
308       return psqt;
309
310   #elif defined(USE_MMX)
311
312       constexpr IndexType NumChunks = HalfDimensions / SimdWidth;
313       const __m64 k0x80s = _mm_set1_pi8(-128);
314
315       for (IndexType p = 0; p < 2; ++p)
316       {
317           const IndexType offset = HalfDimensions * p;
318           auto out = reinterpret_cast<__m64*>(&output[offset]);
319           for (IndexType j = 0; j < NumChunks; ++j)
320           {
321               __m64 sum0 = *(&reinterpret_cast<const __m64*>(accumulation[perspectives[p]])[j * 2 + 0]);
322               __m64 sum1 = *(&reinterpret_cast<const __m64*>(accumulation[perspectives[p]])[j * 2 + 1]);
323               const __m64 packedbytes = _mm_packs_pi16(sum0, sum1);
324               out[j] = _mm_subs_pi8(_mm_adds_pi8(packedbytes, k0x80s), k0x80s);
325           }
326       }
327       _mm_empty();
328       return psqt;
329
330   #elif defined(USE_NEON)
331
332       constexpr IndexType NumChunks = HalfDimensions / (SimdWidth / 2);
333       const int8x8_t Zero = {0};
334
335       for (IndexType p = 0; p < 2; ++p)
336       {
337           const IndexType offset = HalfDimensions * p;
338           const auto out = reinterpret_cast<int8x8_t*>(&output[offset]);
339
340           constexpr IndexType UnrollFactor = 16;
341           static_assert(UnrollFactor % UnrollFactor == 0);
342           for (IndexType j = 0; j < NumChunks; j += UnrollFactor)
343           {
344               int16x8_t sums[UnrollFactor];
345               for (IndexType i = 0; i < UnrollFactor; ++i)
346                 sums[i] = reinterpret_cast<const int16x8_t*>(accumulation[perspectives[p]])[j+i];
347
348               for (IndexType i = 0; i < UnrollFactor; ++i)
349                 out[j+i] = vmax_s8(vqmovn_s16(sums[i]), Zero);
350           }
351       }
352       return psqt;
353
354   #else
355
356       for (IndexType p = 0; p < 2; ++p)
357       {
358           const IndexType offset = HalfDimensions * p;
359           for (IndexType j = 0; j < HalfDimensions; ++j)
360           {
361               BiasType sum = accumulation[perspectives[p]][j];
362               output[offset + j] = static_cast<OutputType>(std::max<int>(0, std::min<int>(127, sum)));
363           }
364       }
365       return psqt;
366
367   #endif
368
369    } // end of function transform()
370
371
372
373    private:
374     void update_accumulator(const Position& pos, const Color perspective) const {
375
376       // The size must be enough to contain the largest possible update.
377       // That might depend on the feature set and generally relies on the
378       // feature set's update cost calculation to be correct and never
379       // allow updates with more added/removed features than MaxActiveDimensions.
380
381   #ifdef VECTOR
382       // Gcc-10.2 unnecessarily spills AVX2 registers if this array
383       // is defined in the VECTOR code below, once in each branch
384       vec_t acc[NumRegs];
385       psqt_vec_t psqt[NumPsqtRegs];
386   #endif
387
388       // Look for a usable accumulator of an earlier position. We keep track
389       // of the estimated gain in terms of features to be added/subtracted.
390       StateInfo *st = pos.state(), *next = nullptr;
391       int gain = FeatureSet::refresh_cost(pos);
392       while (st->previous && !st->accumulator.computed[perspective])
393       {
394         // This governs when a full feature refresh is needed and how many
395         // updates are better than just one full refresh.
396         if (   FeatureSet::requires_refresh(st, perspective)
397             || (gain -= FeatureSet::update_cost(st) + 1) < 0)
398           break;
399         next = st;
400         st = st->previous;
401       }
402
403       if (st->accumulator.computed[perspective])
404       {
405         if (next == nullptr)
406           return;
407
408         // Update incrementally in two steps. First, we update the "next"
409         // accumulator. Then, we update the current accumulator (pos.state()).
410
411         // Gather all features to be updated.
412         const Square ksq = pos.square<KING>(perspective);
413         FeatureSet::IndexList removed[2], added[2];
414         FeatureSet::append_changed_indices(
415           ksq, next->dirtyPiece, perspective, removed[0], added[0]);
416         for (StateInfo *st2 = pos.state(); st2 != next; st2 = st2->previous)
417           FeatureSet::append_changed_indices(
418             ksq, st2->dirtyPiece, perspective, removed[1], added[1]);
419
420         // Mark the accumulators as computed.
421         next->accumulator.computed[perspective] = true;
422         pos.state()->accumulator.computed[perspective] = true;
423
424         // Now update the accumulators listed in states_to_update[], where the last element is a sentinel.
425         StateInfo *states_to_update[3] =
426           { next, next == pos.state() ? nullptr : pos.state(), nullptr };
427   #ifdef VECTOR
428         for (IndexType j = 0; j < HalfDimensions / TileHeight; ++j)
429         {
430           // Load accumulator
431           auto accTile = reinterpret_cast<vec_t*>(
432             &st->accumulator.accumulation[perspective][j * TileHeight]);
433           for (IndexType k = 0; k < NumRegs; ++k)
434             acc[k] = vec_load(&accTile[k]);
435
436           for (IndexType i = 0; states_to_update[i]; ++i)
437           {
438             // Difference calculation for the deactivated features
439             for (const auto index : removed[i])
440             {
441               const IndexType offset = HalfDimensions * index + j * TileHeight;
442               auto column = reinterpret_cast<const vec_t*>(&weights[offset]);
443               for (IndexType k = 0; k < NumRegs; ++k)
444                 acc[k] = vec_sub_16(acc[k], column[k]);
445             }
446
447             // Difference calculation for the activated features
448             for (const auto index : added[i])
449             {
450               const IndexType offset = HalfDimensions * index + j * TileHeight;
451               auto column = reinterpret_cast<const vec_t*>(&weights[offset]);
452               for (IndexType k = 0; k < NumRegs; ++k)
453                 acc[k] = vec_add_16(acc[k], column[k]);
454             }
455
456             // Store accumulator
457             accTile = reinterpret_cast<vec_t*>(
458               &states_to_update[i]->accumulator.accumulation[perspective][j * TileHeight]);
459             for (IndexType k = 0; k < NumRegs; ++k)
460               vec_store(&accTile[k], acc[k]);
461           }
462         }
463
464         for (IndexType j = 0; j < PSQTBuckets / PsqtTileHeight; ++j)
465         {
466           // Load accumulator
467           auto accTilePsqt = reinterpret_cast<psqt_vec_t*>(
468             &st->accumulator.psqtAccumulation[perspective][j * PsqtTileHeight]);
469           for (std::size_t k = 0; k < NumPsqtRegs; ++k)
470             psqt[k] = vec_load_psqt(&accTilePsqt[k]);
471
472           for (IndexType i = 0; states_to_update[i]; ++i)
473           {
474             // Difference calculation for the deactivated features
475             for (const auto index : removed[i])
476             {
477               const IndexType offset = PSQTBuckets * index + j * PsqtTileHeight;
478               auto columnPsqt = reinterpret_cast<const psqt_vec_t*>(&psqtWeights[offset]);
479               for (std::size_t k = 0; k < NumPsqtRegs; ++k)
480                 psqt[k] = vec_sub_psqt_32(psqt[k], columnPsqt[k]);
481             }
482
483             // Difference calculation for the activated features
484             for (const auto index : added[i])
485             {
486               const IndexType offset = PSQTBuckets * index + j * PsqtTileHeight;
487               auto columnPsqt = reinterpret_cast<const psqt_vec_t*>(&psqtWeights[offset]);
488               for (std::size_t k = 0; k < NumPsqtRegs; ++k)
489                 psqt[k] = vec_add_psqt_32(psqt[k], columnPsqt[k]);
490             }
491
492             // Store accumulator
493             accTilePsqt = reinterpret_cast<psqt_vec_t*>(
494               &states_to_update[i]->accumulator.psqtAccumulation[perspective][j * PsqtTileHeight]);
495             for (std::size_t k = 0; k < NumPsqtRegs; ++k)
496               vec_store_psqt(&accTilePsqt[k], psqt[k]);
497           }
498         }
499
500   #else
501         for (IndexType i = 0; states_to_update[i]; ++i)
502         {
503           std::memcpy(states_to_update[i]->accumulator.accumulation[perspective],
504               st->accumulator.accumulation[perspective],
505               HalfDimensions * sizeof(BiasType));
506
507           for (std::size_t k = 0; k < PSQTBuckets; ++k)
508             states_to_update[i]->accumulator.psqtAccumulation[perspective][k] = st->accumulator.psqtAccumulation[perspective][k];
509
510           st = states_to_update[i];
511
512           // Difference calculation for the deactivated features
513           for (const auto index : removed[i])
514           {
515             const IndexType offset = HalfDimensions * index;
516
517             for (IndexType j = 0; j < HalfDimensions; ++j)
518               st->accumulator.accumulation[perspective][j] -= weights[offset + j];
519
520             for (std::size_t k = 0; k < PSQTBuckets; ++k)
521               st->accumulator.psqtAccumulation[perspective][k] -= psqtWeights[index * PSQTBuckets + k];
522           }
523
524           // Difference calculation for the activated features
525           for (const auto index : added[i])
526           {
527             const IndexType offset = HalfDimensions * index;
528
529             for (IndexType j = 0; j < HalfDimensions; ++j)
530               st->accumulator.accumulation[perspective][j] += weights[offset + j];
531
532             for (std::size_t k = 0; k < PSQTBuckets; ++k)
533               st->accumulator.psqtAccumulation[perspective][k] += psqtWeights[index * PSQTBuckets + k];
534           }
535         }
536   #endif
537       }
538       else
539       {
540         // Refresh the accumulator
541         auto& accumulator = pos.state()->accumulator;
542         accumulator.computed[perspective] = true;
543         FeatureSet::IndexList active;
544         FeatureSet::append_active_indices(pos, perspective, active);
545
546   #ifdef VECTOR
547         for (IndexType j = 0; j < HalfDimensions / TileHeight; ++j)
548         {
549           auto biasesTile = reinterpret_cast<const vec_t*>(
550               &biases[j * TileHeight]);
551           for (IndexType k = 0; k < NumRegs; ++k)
552             acc[k] = biasesTile[k];
553
554           for (const auto index : active)
555           {
556             const IndexType offset = HalfDimensions * index + j * TileHeight;
557             auto column = reinterpret_cast<const vec_t*>(&weights[offset]);
558
559             for (unsigned k = 0; k < NumRegs; ++k)
560               acc[k] = vec_add_16(acc[k], column[k]);
561           }
562
563           auto accTile = reinterpret_cast<vec_t*>(
564               &accumulator.accumulation[perspective][j * TileHeight]);
565           for (unsigned k = 0; k < NumRegs; k++)
566             vec_store(&accTile[k], acc[k]);
567         }
568
569         for (IndexType j = 0; j < PSQTBuckets / PsqtTileHeight; ++j)
570         {
571           for (std::size_t k = 0; k < NumPsqtRegs; ++k)
572             psqt[k] = vec_zero_psqt();
573
574           for (const auto index : active)
575           {
576             const IndexType offset = PSQTBuckets * index + j * PsqtTileHeight;
577             auto columnPsqt = reinterpret_cast<const psqt_vec_t*>(&psqtWeights[offset]);
578
579             for (std::size_t k = 0; k < NumPsqtRegs; ++k)
580               psqt[k] = vec_add_psqt_32(psqt[k], columnPsqt[k]);
581           }
582
583           auto accTilePsqt = reinterpret_cast<psqt_vec_t*>(
584             &accumulator.psqtAccumulation[perspective][j * PsqtTileHeight]);
585           for (std::size_t k = 0; k < NumPsqtRegs; ++k)
586             vec_store_psqt(&accTilePsqt[k], psqt[k]);
587         }
588
589   #else
590         std::memcpy(accumulator.accumulation[perspective], biases,
591             HalfDimensions * sizeof(BiasType));
592
593         for (std::size_t k = 0; k < PSQTBuckets; ++k)
594           accumulator.psqtAccumulation[perspective][k] = 0;
595
596         for (const auto index : active)
597         {
598           const IndexType offset = HalfDimensions * index;
599
600           for (IndexType j = 0; j < HalfDimensions; ++j)
601             accumulator.accumulation[perspective][j] += weights[offset + j];
602
603           for (std::size_t k = 0; k < PSQTBuckets; ++k)
604             accumulator.psqtAccumulation[perspective][k] += psqtWeights[index * PSQTBuckets + k];
605         }
606   #endif
607       }
608
609   #if defined(USE_MMX)
610       _mm_empty();
611   #endif
612     }
613
614     alignas(CacheLineSize) BiasType biases[HalfDimensions];
615     alignas(CacheLineSize) WeightType weights[HalfDimensions * InputDimensions];
616     alignas(CacheLineSize) PSQTWeightType psqtWeights[InputDimensions * PSQTBuckets];
617   };
618
619 }  // namespace Stockfish::Eval::NNUE
620
621 #endif // #ifndef NNUE_FEATURE_TRANSFORMER_H_INCLUDED