forked from LeelaChessZero/lc0
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
153 changed files
with
16,593 additions
and
4,446 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,11 +1,9 @@ | ||
FROM floopcz/tensorflow_cc:ubuntu-shared-cuda | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB && apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB && sh -c 'echo deb https://apt.repos.intel.com/mkl all main > /etc/apt/sources.list.d/intel-mkl.list' && apt-get update && apt-get install -y intel-mkl-64bit-2018.2-046 | ||
RUN apt-get install -y clang-6.0 ninja-build python3-pip nvidia-opencl-dev libopenblas-dev libboost-dev nvidia-cuda-dev nvidia-cuda-toolkit libgtest-dev git ssh tar gzip ca-certificates sudo | ||
RUN apt-get install -y clang ninja-build python3-pip nvidia-opencl-dev libopenblas-dev libboost-dev libgtest-dev git ssh tar gzip ca-certificates sudo | ||
RUN apt-get install -y g++-8 | ||
RUN apt-get install -y cuda | ||
RUN pip3 install meson | ||
RUN ln -s /usr/include/ /usr/include/openblas | ||
|
||
RUN curl -OL https://github.com/google/protobuf/releases/download/v3.5.1/protoc-3.5.1-linux-x86_64.zip | ||
RUN unzip protoc-3.5.1-linux-x86_64.zip -d protoc3 | ||
RUN sudo mv protoc3/bin/* /usr/local/bin/ | ||
RUN sudo mv protoc3/include/* /usr/local/include/ |
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
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,65 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**WARNING: Please only use GitHub issues for BUG REPORTS and FEATURE REQUESTS** | ||
Lengthy algorithm discussions etc are fine too, but also consider creating a wiki page or a page on website. | ||
|
||
Here is what to do with other types of questions: | ||
1. Build problems: ask in #help channel in our discord: https://discord.gg/pKujYxD | ||
2. Configuration questions: ask in #help channel in our discord: https://discord.gg/pKujYxD | ||
3. Running problems: ask in #help channel in our discord: https://discord.gg/pKujYxD | ||
|
||
|
||
If you are filing a bug report, please fill the fields below. | ||
Otherwise, feel free to remove this text and type a free-form issue as usual. | ||
|
||
BUG REPORT | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**Steps to Reproduce** | ||
1. | ||
2. | ||
3. | ||
4. | ||
Expected behavior: | ||
Observed behavior: | ||
|
||
**Lc0 version** | ||
Include Lc0 version/operating system/backend type. | ||
|
||
**Lc0 parameters** | ||
Command line, if not default. | ||
Include screenshot of configuration window, if using through GUI. | ||
|
||
**Hardware** | ||
* Number and model of GPUs that you use. | ||
* Amount of RAM in the system | ||
* Other specs (CPU etc) if it may be relevant | ||
|
||
**Lc0 logs** | ||
Please attach Lc0 logs. Here is how to produce them (e.g. for D:\logfile.txt): | ||
|
||
Set the following UCI option: | ||
**Logfile:** D:\\logfile.txt | ||
OR | ||
pass this as a command line argument: | ||
`--logfile=D:\logfile.txt` | ||
OR | ||
Create **lc0.config** file in the same directory as your **lc0.exe** is located, with the following contents: | ||
``` | ||
logfile=D:\logfile.txt | ||
``` | ||
|
||
After running Lc0, **D:\logfile.txt** should appear. | ||
|
||
|
||
**Chess GUI logs** | ||
If there is a problem with particular GUI (cutechess/arena/etc), also attach logs of that program. |
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,11 +1,14 @@ | ||
!subprojects/*.wrap | ||
*.swp | ||
.clang_complete | ||
.DS_Store | ||
.clangd/ | ||
build/ | ||
testdata/ | ||
LC0VSProj/ | ||
compile_commands.json | ||
CUDA_NN/ | ||
.DS_Store | ||
xcuserdata | ||
subprojects/* | ||
!subprojects/*.wrap | ||
lc0.xcodeproj/ | ||
*.swp | ||
.clang_complete | ||
LC0VSProj/ | ||
src/.vs/ | ||
subprojects/* | ||
testdata/ | ||
xcuserdata |
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
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
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
Oops, something went wrong.