Increase number of samples, add entropy to isle and config

This commit is contained in:
Christian Semmler 2025-02-26 20:14:17 -07:00
parent a5c4b793c6
commit 5c70675448
2 changed files with 8 additions and 2 deletions

View File

@ -106,7 +106,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
instance: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
instance: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
steps:
- uses: actions/checkout@v4
@ -229,7 +229,7 @@ jobs:
run: |
reccmp-project detect --what original --search-path legobin
reccmp-project detect --what recompiled --search-path build
- name: Denoise Accuracy
shell: bash
run: |

View File

@ -589,6 +589,12 @@ if (MSVC_FOR_DECOMP)
foreach(tgt IN LISTS lego1_targets beta10_targets)
target_compile_options(${tgt} PRIVATE /FI${PROJECT_SOURCE_DIR}/entropy.h)
endforeach()
if (TARGET isle)
target_compile_options(isle PRIVATE /FI${PROJECT_SOURCE_DIR}/entropy.h)
endif()
if (TARGET config)
target_compile_options(config PRIVATE /FI${PROJECT_SOURCE_DIR}/entropy.h)
endif()
endif()
if(TARGET lego1)