Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
FF2
  • Loading branch information
DanielUranga committed Feb 11, 2021
1 parent e44edde commit faef72a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
Binary file added src/FatFritz2_v1.bin
Binary file not shown.
2 changes: 1 addition & 1 deletion src/compile.sh
@@ -1,4 +1,4 @@
for ARCH in x86-64-avx2 x86-64-bmi2 x86-64-modern
for ARCH in x86-64-avx2 x86-64-bmi2 x86-64-modern x86-64-ssse3
do
make clean
make -j profile-build ARCH=$ARCH COMP=mingw
Expand Down
1 change: 1 addition & 0 deletions src/evaluate.cpp
Expand Up @@ -43,6 +43,7 @@
// const unsigned char *const gEmbeddedNNUEEnd; // a marker to the end
// const unsigned int gEmbeddedNNUESize; // the size of the embedded file
// Note that this does not work in Microsof Visual Studio.
#define NNUE_EMBEDDING_OFF
#if !defined(_MSC_VER) && !defined(NNUE_EMBEDDING_OFF)
INCBIN(EmbeddedNNUE, EvalFileDefaultName);
#else
Expand Down
4 changes: 2 additions & 2 deletions src/nnue/architectures/halfkp_256x2-32-32.h
Expand Up @@ -41,8 +41,8 @@ namespace Layers {

// Define network structure
using InputLayer = InputSlice<kTransformedFeatureDimensions * 2>;
using HiddenLayer1 = ClippedReLU<AffineTransform<InputLayer, 32>>;
using HiddenLayer2 = ClippedReLU<AffineTransform<HiddenLayer1, 32>>;
using HiddenLayer1 = ClippedReLU<AffineTransform<InputLayer, 16>>;
using HiddenLayer2 = ClippedReLU<AffineTransform<HiddenLayer1, 16>>;
using OutputLayer = AffineTransform<HiddenLayer2, 1>;

} // namespace Layers
Expand Down
2 changes: 1 addition & 1 deletion src/ucioption.cpp
Expand Up @@ -59,7 +59,7 @@ void init(OptionsMap& o) {
constexpr int MaxHashMB = Is64Bit ? 33554432 : 2048;

o["Debug Log File"] << Option("", on_logger);
o["Contempt"] << Option(0, -100, 100);
o["Contempt"] << Option(24, -100, 100);
o["Analysis Contempt"] << Option("Both var Off var White var Black var Both", "Both");
o["Threads"] << Option(1, 1, 512, on_threads);
o["Hash"] << Option(16, 1, MaxHashMB, on_hash_size);
Expand Down

0 comments on commit faef72a

Please sign in to comment.