]> git.sesse.net Git - stockfish/blobdiff - src/nnue/layers/input_slice.h
Big search tuning
[stockfish] / src / nnue / layers / input_slice.h
index f113b911239d789fc487a6ae9dc32462fa8c0aa5..8f526b745f724f435a35f1496f5f43f10bf58d45 100644 (file)
@@ -1,6 +1,6 @@
 /*
   Stockfish, a UCI chess playing engine derived from Glaurung 2.1
-  Copyright (C) 2004-2021 The Stockfish developers (see AUTHORS file)
+  Copyright (C) 2004-2022 The Stockfish developers (see AUTHORS file)
 
   Stockfish is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
@@ -53,6 +53,11 @@ class InputSlice {
     return true;
   }
 
+  // Write network parameters
+  bool write_parameters(std::ostream& /*stream*/) const {
+    return true;
+  }
+
   // Forward propagation
   const OutputType* propagate(
       const TransformedFeatureType* transformedFeatures,