From 91184490c3b2c3e777f54fdffc27344170f6eb2d Mon Sep 17 00:00:00 2001 From: Xin He Date: Fri, 6 Dec 2024 17:59:32 +0800 Subject: [PATCH] fix dlrm when using incbench (#2084) Signed-off-by: Xin He --- .../recommendation/dlrm/static_quant/ipex/run_benchmark.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/3.x_api/pytorch/recommendation/dlrm/static_quant/ipex/run_benchmark.sh b/examples/3.x_api/pytorch/recommendation/dlrm/static_quant/ipex/run_benchmark.sh index dc593308678..e3c25b0f582 100755 --- a/examples/3.x_api/pytorch/recommendation/dlrm/static_quant/ipex/run_benchmark.sh +++ b/examples/3.x_api/pytorch/recommendation/dlrm/static_quant/ipex/run_benchmark.sh @@ -80,7 +80,7 @@ function run_tuning { --save-model ${tuned_checkpoint} --test-freq=2048 --print-auc $ARGS \ --load-model=${input_model} --accuracy_only elif [[ ${mode} == "performance" ]]; then - incbench --num_cores_per_instance 4 -u $MODEL_SCRIPT \ + incbench --num_cores_per_instance 4 $MODEL_SCRIPT \ --raw-data-file=${dataset_location}/day --processed-data-file=${dataset_location}/terabyte_processed.npz \ --data-set=terabyte --benchmark \ --memory-map --mlperf-bin-loader --round-targets=True --learning-rate=1.0 \