Skip to content

Commit

Permalink
- エンジンオプションのPV_Intervalの上限大きくする
Browse files Browse the repository at this point in the history
  - 定跡掘る時とか最後に1回だけPVが来ればいいことがあるから。その時はPV_Intervalを大きく設定すれば良い。
- readme.mdのMacOS→macOSと改める
- 駄目元でUbuntu用のふかうら王のActions少し修正。
  • Loading branch information
yaneurao committed Dec 24, 2023
1 parent 5ad437f commit 89cd2f5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/make-deep-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
matrix:
edition:
- YANEURAOU_ENGINE_DEEP_ORT_CPU
- YANEURAOU_ENGINE_DEEP_TENSOR_RT
- YANEURAOU_ENGINE_DEEP_TENSOR_RT_UBUNTU
compiler:
- g++-10
- g++-11
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![Make CI (for Ubuntu Linux)](https://github.com/yaneurao/YaneuraOu/actions/workflows/make.yml/badge.svg?event=push)](https://github.com/yaneurao/YaneuraOu/actions/workflows/make.yml)
[![Make CI (DeepLearning for Ubuntu Linux)](https://github.com/yaneurao/YaneuraOu/actions/workflows/make-deep-ubuntu.yml/badge.svg?event=push)](https://github.com/yaneurao/YaneuraOu/actions/workflows/make-deep-ubuntu.yml)
[![NDK CI (for Android)](https://github.com/yaneurao/YaneuraOu/actions/workflows/ndk.yml/badge.svg?event=push)](https://github.com/yaneurao/YaneuraOu/actions/workflows/ndk.yml)
[![Make CI (for MacOS)](https://github.com/yaneurao/YaneuraOu/actions/workflows/make-macos.yml/badge.svg?event=push)](https://github.com/yaneurao/YaneuraOu/actions/workflows/make-macos.yml)
[![Make CI (for macOS)](https://github.com/yaneurao/YaneuraOu/actions/workflows/make-macos.yml/badge.svg?event=push)](https://github.com/yaneurao/YaneuraOu/actions/workflows/make-macos.yml)
[![Make CI (for WebAssembly)](https://github.com/yaneurao/YaneuraOu/actions/workflows/make-wasm.yml/badge.svg?event=push)](https://github.com/yaneurao/YaneuraOu/actions/workflows/make-wasm.yml)

# About this project
Expand Down
8 changes: 4 additions & 4 deletions source/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -387,15 +387,15 @@ ifneq (,$(findstring YANEURAOU_ENGINE_DEEP,$(YANEURAOU_EDITION)))
CPPFLAGS += -DYANEURAOU_ENGINE_DEEP

ifneq (,$(findstring TENSOR_RT,$(YANEURAOU_EDITION)))
CPPFLAGS += -DTENSOR_RT
CPPFLAGS += -DTENSOR_RT
NVCC_CPPFLAGS += -DTENSOR_RT
LDFLAGS += -lnvinfer -lnvonnxparser -lcudart
LDFLAGS += -lnvinfer -lnvonnxparser -lcudart

# YANEURAOU_EDITIONのなかにUBUNTUと言う文字列が含まれているならlinkerなどの設定をしてやる。
ifneq (,$(findstring UBUNTU,$(YANEURAOU_EDITION)))
CPPFLAGS += -I/usr/local/cuda/include
LDFLAGS += -L/usr/local/cuda/lib64
LDFLAGS += -L/usr/local/cuda/lib64/stubs
LDFLAGS += -L/usr/local/cuda/lib64
LDFLAGS += -L/usr/local/cuda/lib64/stubs
endif

CUDA_SOURCES += eval/deep/unpack.cu
Expand Down
2 changes: 1 addition & 1 deletion source/engine/yaneuraou-engine/yaneuraou-search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ void USI::extra_option(USI::OptionsMap & o)
o["DrawValueWhite"] << Option(-2, -30000, 30000);

// PVの出力の抑制のために前回出力時間からの間隔を指定できる。
o["PvInterval"] << Option(300, 0, 100000);
o["PvInterval"] << Option(300, 0, 100000000);

// 投了スコア
o["ResignValue"] << Option(99999, 0, 99999);
Expand Down

0 comments on commit 89cd2f5

Please sign in to comment.