copy model weights to install directory

This commit is contained in:
Hannes Signer 2025-12-11 00:29:24 +01:00
parent 0a5f7010fe
commit 67053fc662
2 changed files with 9 additions and 1 deletions

View File

@ -7,11 +7,15 @@ set(runtime_files
barite_200_rt.R
)
set(model_weights
barite_trained.weights.h5)
# add_custom_target(barite_bench DEPENDS ${bench_files} ${runtime_files})
ADD_BENCH_TARGET(barite_bench
bench_files
runtime_files
runtime_files
model_weights
"barite"
)

View File

@ -6,10 +6,14 @@ set(runtime_files
dolo_interp_rt_dt2000.R
)
set(model_weights
dolomite_trained.weights.h5)
ADD_BENCH_TARGET(
dolo_bench
bench_files
runtime_files
model_weights
"dolo"
)