Even with projects it still could not see it.
cd lc0
CC=clang CXX=clang++ ./build.sh
sudo apt-get install -y qt5-default libqt5svg5*
sudo apt-get install
cd cute*
qmake && make -j 2
There was a cd to Lc0.
To solve this I revised the script to
echo "Installing lc0"
cd lc0
CC=clang CXX=clang++ ./build.sh
echo "Install and compile cutechess"
cd ~
sudo apt-get install -y qt5-default libqt5svg5*
sudo apt-get install
cd cute*
qmake && make -j 2
With that,
cd cutechess/projects/cli
would now work.
But there is a problem now on running the engine
lc0/build/release/lc0
In cutechess command line I use this
cmd=lc0/build/release/lc0
Cutechess cannot find that path/file
This is now my cutechess command line
cd cutechess/projects/cli && QT_LOGGING_RULES="*.debug=true" ./cutechess-cli -engine name="11198" cmd=lc0/build/release/lc0 ...
This is the last part of Lc0 compilation.
...
...
Oct 11 17:35:21 instance-1 startup-script: INFO startup-script: 8 warnings generated.
Oct 11 17:35:23 instance-1 startup-script: INFO startup-script: [251/268] Compiling C++ object 'encoder_test@exe/src_neural_network_check.cc.o'.
Oct 11 17:35:24 instance-1 startup-script: INFO startup-script: [252/268] Compiling C++ object 'encoder_test@exe/src_mcts_search.cc.o'.
Oct 11 17:35:24 instance-1 startup-script: INFO startup-script: [253/268] Compiling C++ object 'encoder_test@exe/src_neural_network_random.cc.o'.
Oct 11 17:35:24 instance-1 startup-script: INFO startup-script: [254/268] Compiling C++ object 'encoder_test@exe/src_neural_network_mux.cc.o'.
Oct 11 17:35:25 instance-1 startup-script: INFO startup-script: [255/268] Compiling C++ object 'encoder_test@exe/src_neural_network_st_batch.cc.o'.
Oct 11 17:35:26 instance-1 startup-script: INFO startup-script: [256/268] Compiling C++ object 'encoder_test@exe/src_neural_writer.cc.o'.
Oct 11 17:35:28 instance-1 startup-script: INFO startup-script: [257/268] Compiling C++ object 'encoder_test@exe/src_selfplay_game.cc.o'.
Oct 11 17:35:29 instance-1 startup-script: INFO startup-script: [258/268] Compiling C++ object 'encoder_test@exe/src_selfplay_loop.cc.o'.
Oct 11 17:35:30 instance-1 startup-script: INFO startup-script: [259/268] Compiling C++ object 'encoder_test@exe/src_utils_histogram.cc.o'.
Oct 11 17:35:30 instance-1 startup-script: INFO startup-script: [260/268] Compiling C++ object 'encoder_test@exe/src_utils_configfile.cc.o'.
Oct 11 17:35:32 instance-1 startup-script: INFO startup-script: [261/268] Compiling C++ object 'encoder_test@exe/src_selfplay_tournament.cc.o'.
Oct 11 17:35:32 instance-1 startup-script: INFO startup-script: [262/268] Compiling C++ object 'encoder_test@exe/src_utils_optionsdict.cc.o'.
Oct 11 17:35:33 instance-1 startup-script: INFO startup-script: [263/268] Compiling C++ object 'encoder_test@exe/src_utils_random.cc.o'.
Oct 11 17:35:33 instance-1 startup-script: INFO startup-script: [264/268] Compiling C++ object 'encoder_test@exe/src_utils_optionsparser.cc.o'.
Oct 11 17:35:34 instance-1 startup-script: INFO startup-script: [265/268] Compiling C++ object 'encoder_test@exe/src_utils_transpose.cc.o'.
Oct 11 17:35:34 instance-1 startup-script: INFO startup-script: [266/268] Compiling C++ object 'encoder_test@exe/src_utils_string.cc.o'.
Oct 11 17:35:34 instance-1 startup-script: INFO startup-script: [267/268] Compiling C++ object 'encoder_test@exe/src_utils_filesystem.posix.cc.o'.
Oct 11 17:35:34 instance-1 startup-script: INFO startup-script: [268/268] Linking target encoder_test.
Does it really compile Lc0?
Yes I notice the script has similarities to the startup script used to generate training games on google cloud.
Do you know how to send a bash command to query the Instance to see where the files where located.
I tried the google cloud shell send ls command and nothing is there.
Tried the ssh window send ls command and there is nothing there also.