Skip NNUE rotation for racing kings
authorFabian Fichter <ianfab@users.noreply.github.com>
Sat, 14 Nov 2020 18:11:18 +0000 (19:11 +0100)
committerFabian Fichter <ianfab@users.noreply.github.com>
Sat, 14 Nov 2020 18:30:23 +0000 (19:30 +0100)
src/nnue/features/half_kp.cpp
src/nnue/features/half_kp.h

index 6a09192..9dfa703 100644 (file)
 namespace Eval::NNUE::Features {
 
   // Orient a square according to perspective (rotates by 180 for black)
-  inline Square orient(Color perspective, Square s) {
+  inline Square orient(const Position& pos, Color perspective, Square s) {
 #ifdef LARGEBOARDS
-    return Square(int(rank_of(s) * 8 + file_of(s)) ^ (bool(perspective) * 63));
+    return Square(int(rank_of(s) * 8 + file_of(s)) ^ (!(pos.capture_the_flag(BLACK) & Rank8BB) * bool(perspective) * 63));
 #else
-    return Square(int(s) ^ (bool(perspective) * 63));
+    return Square(int(s) ^ (!(pos.capture_the_flag(BLACK) & Rank8BB) * bool(perspective) * 63));
 #endif
   }
 
   // Find the index of the feature quantity from the king position and PieceSquare
   template <Side AssociatedKing>
   inline IndexType HalfKP<AssociatedKing>::MakeIndex(
-      Color perspective, Square s, Piece pc, Square ksq) {
+      const Position& pos, Color perspective, Square s, Piece pc, Square ksq) {
 
-    return IndexType(orient(perspective, s) + kpp_board_index[pc][perspective] + PS_END * ksq);
+    return IndexType(orient(pos, perspective, s) + kpp_board_index[pc][perspective] + PS_END * ksq);
   }
 
   // Get a list of indices for active features
@@ -45,11 +45,11 @@ namespace Eval::NNUE::Features {
   void HalfKP<AssociatedKing>::AppendActiveIndices(
       const Position& pos, Color perspective, IndexList* active) {
 
-    Square ksq = orient(perspective, pos.square<KING>(perspective));
+    Square ksq = orient(pos, perspective, pos.square<KING>(perspective));
     Bitboard bb = pos.pieces() & ~pos.pieces(KING);
     while (bb) {
       Square s = pop_lsb(&bb);
-      active->push_back(MakeIndex(perspective, s, pos.piece_on(s), ksq));
+      active->push_back(MakeIndex(pos, perspective, s, pos.piece_on(s), ksq));
     }
   }
 
@@ -59,14 +59,14 @@ namespace Eval::NNUE::Features {
       const Position& pos, const DirtyPiece& dp, Color perspective,
       IndexList* removed, IndexList* added) {
 
-    Square ksq = orient(perspective, pos.square<KING>(perspective));
+    Square ksq = orient(pos, perspective, pos.square<KING>(perspective));
     for (int i = 0; i < dp.dirty_num; ++i) {
       Piece pc = dp.piece[i];
       if (type_of(pc) == KING) continue;
       if (dp.from[i] != SQ_NONE)
-        removed->push_back(MakeIndex(perspective, dp.from[i], pc, ksq));
+        removed->push_back(MakeIndex(pos, perspective, dp.from[i], pc, ksq));
       if (dp.to[i] != SQ_NONE)
-        added->push_back(MakeIndex(perspective, dp.to[i], pc, ksq));
+        added->push_back(MakeIndex(pos, perspective, dp.to[i], pc, ksq));
     }
   }
 
index ff29657..98e797f 100644 (file)
@@ -55,7 +55,7 @@ namespace Eval::NNUE::Features {
 
    private:
     // Index of a feature for a given king position and another piece on some square
-    static IndexType MakeIndex(Color perspective, Square s, Piece pc, Square sq_k);
+    static IndexType MakeIndex(const Position& pos, Color perspective, Square s, Piece pc, Square sq_k);
   };
 
 }  // namespace Eval::NNUE::Features