// Definition of layer ClippedReLU of NNUE evaluation function #ifndef _NNUE_LAYERS_CLIPPED_RELU_H_ #define _NNUE_LAYERS_CLIPPED_RELU_H_ #if defined(EVAL_NNUE) #include "../nnue_common.h" namespace Eval { namespace NNUE { namespace Layers { // Clipped ReLU template class ClippedReLU { public: // Input/output type using InputType = typename PreviousLayer::OutputType; using OutputType = std::uint8_t; static_assert(std::is_same::value, ""); // number of input/output dimensions static constexpr IndexType kInputDimensions = PreviousLayer::kOutputDimensions; static constexpr IndexType kOutputDimensions = kInputDimensions; // Size of forward propagation buffer used in this layer static constexpr std::size_t kSelfBufferSize = CeilToMultiple(kOutputDimensions * sizeof(OutputType), kCacheLineSize); // Size of the forward propagation buffer used from the input layer to this layer static constexpr std::size_t kBufferSize = PreviousLayer::kBufferSize + kSelfBufferSize; // Hash value embedded in the evaluation function file static constexpr std::uint32_t GetHashValue() { std::uint32_t hash_value = 0x538D24C7u; hash_value += PreviousLayer::GetHashValue(); return hash_value; } // A string that represents the structure from the input layer to this layer static std::string GetStructureString() { return "ClippedReLU[" + std::to_string(kOutputDimensions) + "](" + PreviousLayer::GetStructureString() + ")"; } // read parameters bool ReadParameters(std::istream& stream) { return previous_layer_.ReadParameters(stream); } // write parameters bool WriteParameters(std::ostream& stream) const { return previous_layer_.WriteParameters(stream); } // forward propagation const OutputType* Propagate( const TransformedFeatureType* transformed_features, char* buffer) const { const auto input = previous_layer_.Propagate( transformed_features, buffer + kSelfBufferSize); const auto output = reinterpret_cast(buffer); #if defined(USE_AVX2) constexpr IndexType kNumChunks = kInputDimensions / kSimdWidth; const __m256i kZero = _mm256_setzero_si256(); const __m256i kOffsets = _mm256_set_epi32(7, 3, 6, 2, 5, 1, 4, 0); const auto in = reinterpret_cast(input); const auto out = reinterpret_cast<__m256i*>(output); for (IndexType i = 0; i < kNumChunks; ++i) { const __m256i words0 = _mm256_srai_epi16(_mm256_packs_epi32( #if defined(__MINGW32__) || defined(__MINGW64__) // HACK: Use _mm256_loadu_si256() instead of _mm256_load_si256. Because the binary // compiled with g++ in MSYS2 crashes here because the output memory is not aligned // even though alignas is specified. _mm256_loadu_si256 #else _mm256_load_si256 #endif (&in[i * 4 + 0]), #if defined(__MINGW32__) || defined(__MINGW64__) _mm256_loadu_si256 #else _mm256_load_si256 #endif (&in[i * 4 + 1])), kWeightScaleBits); const __m256i words1 = _mm256_srai_epi16(_mm256_packs_epi32( #if defined(__MINGW32__) || defined(__MINGW64__) _mm256_loadu_si256 #else _mm256_load_si256 #endif (&in[i * 4 + 2]), #if defined(__MINGW32__) || defined(__MINGW64__) _mm256_loadu_si256 #else _mm256_load_si256 #endif (&in[i * 4 + 3])), kWeightScaleBits); #if defined(__MINGW32__) || defined(__MINGW64__) _mm256_storeu_si256 #else _mm256_store_si256 #endif (&out[i], _mm256_permutevar8x32_epi32(_mm256_max_epi8( _mm256_packs_epi16(words0, words1), kZero), kOffsets)); } constexpr IndexType kStart = kNumChunks * kSimdWidth; #elif defined(USE_SSE41) constexpr IndexType kNumChunks = kInputDimensions / kSimdWidth; const __m128i kZero = _mm_setzero_si128(); const auto in = reinterpret_cast(input); const auto out = reinterpret_cast<__m128i*>(output); for (IndexType i = 0; i < kNumChunks; ++i) { const __m128i words0 = _mm_srai_epi16(_mm_packs_epi32( _mm_load_si128(&in[i * 4 + 0]), _mm_load_si128(&in[i * 4 + 1])), kWeightScaleBits); const __m128i words1 = _mm_srai_epi16(_mm_packs_epi32( _mm_load_si128(&in[i * 4 + 2]), _mm_load_si128(&in[i * 4 + 3])), kWeightScaleBits); _mm_store_si128(&out[i], _mm_max_epi8( _mm_packs_epi16(words0, words1), kZero)); } constexpr IndexType kStart = kNumChunks * kSimdWidth; #elif defined(IS_ARM) constexpr IndexType kNumChunks = kInputDimensions / (kSimdWidth / 2); const int8x8_t kZero = {0}; const auto in = reinterpret_cast(input); const auto out = reinterpret_cast(output); for (IndexType i = 0; i < kNumChunks; ++i) { int16x8_t shifted; const auto pack = reinterpret_cast(&shifted); pack[0] = vqshrn_n_s32(in[i * 2 + 0], kWeightScaleBits); pack[1] = vqshrn_n_s32(in[i * 2 + 1], kWeightScaleBits); out[i] = vmax_s8(vqmovn_s16(shifted), kZero); } constexpr IndexType kStart = kNumChunks * (kSimdWidth / 2); #else constexpr IndexType kStart = 0; #endif for (IndexType i = kStart; i < kInputDimensions; ++i) { output[i] = static_cast( std::max(0, std::min(127, input[i] >> kWeightScaleBits))); } return output; } private: // Make the learning class a friend friend class Trainer; // the layer immediately before this layer PreviousLayer previous_layer_; }; } // namespace Layers } // namespace NNUE } // namespace Eval #endif // defined(EVAL_NNUE) #endif