Skip to content

Commit

Permalink
added 0.5 net
Browse files Browse the repository at this point in the history
  • Loading branch information
dkappe committed Jan 10, 2021
1 parent 25f4b1f commit 80b2dc7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
GCC=gcc
WIN=x86_64-w64-mingw32-gcc

all:
ld -r -b binary -o toganet.o toganet.bin
gcc -march=native -Ofast *.cpp ./nnue/*.cpp toganet.o -o toga3 -lm -lpthread -DUSE_SSE41 -msse4.1 -DUSE_SSSE3 -mssse3 -DUSE_SSE2 -msse2 -DUSE_SSE -msse -DUSE_AVX2 -mavx2
$(GCC) -march=native -Ofast *.cpp ./nnue/*.cpp toganet.o -o toga3 -lm -lpthread -DUSE_SSE41 -msse4.1 -DUSE_SSSE3 -mssse3 -DUSE_SSE2 -msse2 -DUSE_SSE -msse -DUSE_AVX2 -mavx2
$(GCC) -Ofast *.cpp ./nnue/*.cpp toganet.o -o toga3_avx2 -lm -lpthread -DUSE_SSE41 -msse4.1 -DUSE_SSSE3 -mssse3 -DUSE_SSE2 -msse2 -DUSE_SSE -msse -DUSE_AVX2 -mavx2
# $(WIN) -Ofast *.cpp ./nnue/*.cpp toganet.o -o toga3.exe -lm -lpthread -DUSE_SSE41 -msse4.1 -DUSE_SSSE3 -mssse3 -DUSE_SSE2 -msse2 -DUSE_SSE -msse -DUSE_AVX2 -mavx2

6 changes: 3 additions & 3 deletions src/protocol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

// constants

#define VERSION "4.01"
#define VERSION "0.2"

static const double NormalRatio = 1.0;
static const double PonderRatio = 1.25;
Expand Down Expand Up @@ -259,8 +259,8 @@ static void loop_step() {
ASSERT(!Searching);
ASSERT(!Delay);

send("id name Toga II " VERSION);
send("id author Jerry Donald Watson, Thomas Gaksch and Fabien Letouzey");
send("id name Toga III " VERSION);
send("id author Dietrich Kappe, Jerry Donald Watson, Thomas Gaksch and Fabien Letouzey");

option_list();

Expand Down
Binary file modified src/toganet.bin
Binary file not shown.

0 comments on commit 80b2dc7

Please sign in to comment.