Skip to content

Commit

Permalink
Remove Use NNUE which is no longer an option in master SF
Browse files Browse the repository at this point in the history
  • Loading branch information
vondele committed Jul 11, 2023
1 parent 5d789be commit d32e72f
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions server/fishtest/templates/tests_run.mak
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"tc": "10+0.1",
"new_tc": "10+0.1",
"threads": 1,
"options": "Hash=16 Use NNUE=true",
"options": "Hash=16",
"book": "${test_book}",
"stop_rule": "stop-rule-sprt",
"bounds": "standard STC",
Expand All @@ -82,7 +82,7 @@
"tc": "60+0.6",
"new_tc": "60+0.6",
"threads": 1,
"options": "Hash=64 Use NNUE=true",
"options": "Hash=64",
"book": "${test_book}",
"stop_rule": "stop-rule-sprt",
"bounds": "standard LTC",
Expand All @@ -101,7 +101,7 @@
"tc": "5+0.05",
"new_tc": "5+0.05",
"threads": 8,
"options": "Hash=64 Use NNUE=true",
"options": "Hash=64",
"book": "${test_book}",
"stop_rule": "stop-rule-sprt",
"bounds": "standard STC",
Expand All @@ -120,7 +120,7 @@
"tc": "20+0.2",
"new_tc": "20+0.2",
"threads": 8,
"options": "Hash=256 Use NNUE=true",
"options": "Hash=256",
"book": "${test_book}",
"stop_rule": "stop-rule-sprt",
"bounds": "standard LTC",
Expand All @@ -139,7 +139,7 @@
"tc": "60+0.6",
"new_tc": "60+0.6",
"threads": 1,
"options": "Hash=64 Use NNUE=true",
"options": "Hash=64",
"book": "${pt_book}",
"stop_rule": "stop-rule-games",
"games": 60000,
Expand All @@ -160,7 +160,7 @@
"tc": "60+0.6",
"new_tc": "60+0.6",
"threads": 8,
"options": "Hash=512 Use NNUE=true",
"options": "Hash=512",
"book": "${pt_book}",
"stop_rule": "stop-rule-games",
"games": 60000,
Expand Down Expand Up @@ -245,7 +245,7 @@
name="new-options"
id="new-options"
class="form-control"
value="${args.get('new_options', 'Hash=16 Use NNUE=true')}"
value="${args.get('new_options', 'Hash=16')}"
>
</div>

Expand All @@ -256,7 +256,7 @@
name="base-options"
id="base-options"
class="form-control"
value="${args.get('base_options', 'Hash=16 Use NNUE=true')}"
value="${args.get('base_options', 'Hash=16')}"
>
</div>

Expand Down Expand Up @@ -724,15 +724,11 @@
document.getElementById("new_tc").value = new_tc;
document.getElementById("threads").value = threads;
document.getElementById("new-options").value = (
options.replace(" Use NNUE=true", "") +
" " +
document
.getElementById("new-options")
.value.replace(/Hash=[0-9]+ ?/, "")
).replace(/ $/, "");
document.getElementById("base-options").value = (
options.replace(" Use NNUE=true", "") +
" " +
document
.getElementById("base-options")
.value.replace(/Hash=[0-9]+ ?/, "")
Expand Down

0 comments on commit d32e72f

Please sign in to comment.