forked from WandererXII/shoginet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to Fairy Stockfish largeboards 14.1
- Update to Fairy Stockfish largeboards 14.1 fairy-stockfish/Fairy-Stockfish@67af994 - Support Python 3.10: `setDaemon()` is deprecated - Windows Support for WandererXII#9 A script similar to the`./build-stockfish.sh` but for windows has not been added. - Fix markdown formatting
- Loading branch information
Showing
10 changed files
with
170 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.vscode/ | ||
__pycache__ | ||
fishnet.ini | ||
YaneuraOu/ | ||
Fairy-Stockfish/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#!/bin/sh | ||
|
||
echo "- Getting latest Fairy-Stockfish ..." | ||
|
||
if [ -d Fairy-Stockfish/src ]; then | ||
cd Fairy-Stockfish/src | ||
make clean > /dev/null | ||
git pull | ||
else | ||
git clone --depth 1 https://github.com/ianfab/Fairy-Stockfish.git | ||
cd Fairy-Stockfish/src | ||
fi | ||
|
||
echo "- Determining CPU architecture ..." | ||
|
||
ARCH=x86-64 | ||
EXE=fairy-stockfish-largeboards_x86-64 | ||
|
||
if [ -f /proc/cpuinfo ]; then | ||
if grep "^flags" /proc/cpuinfo | grep -q popcnt ; then | ||
ARCH=x86-64-modern | ||
EXE=fairy-stockfish-largeboards_x86-64-modern | ||
fi | ||
|
||
if grep "^vendor_id" /proc/cpuinfo | grep -q Intel ; then | ||
if grep "^flags" /proc/cpuinfo | grep bmi2 | grep -q popcnt ; then | ||
ARCH=x86-64-bmi2 | ||
EXE=fairy-stockfish-largeboards_x86-64-bmi2 | ||
fi | ||
fi | ||
fi | ||
|
||
echo "- Building $EXE ... (patience advised)" | ||
make build ARCH=$ARCH EXE=../../$EXE largeboards=yes > /dev/null | ||
|
||
cd ../.. | ||
mv ./fairy-stockfish* ./fairy-stockfish-largeboards | ||
echo "- Done!" |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
pyffish==0.0.69 | ||
requests |
Oops, something went wrong.