We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b60074f commit b3ff9a5Copy full SHA for b3ff9a5
examples/llama-bench/llama-bench.cpp
@@ -1491,7 +1491,10 @@ int main(int argc, char ** argv) {
1491
llama_model * lmodel = nullptr;
1492
const cmd_params_instance * prev_inst = nullptr;
1493
1494
+ int params_idx = 1;
1495
for (const auto & inst : params_instances) {
1496
+ LOG_TEE("llama-bench: starting benchmark %d/%ld\n", params_idx, params_instances.size());
1497
+ params_idx ++;
1498
// keep the same model between tests when possible
1499
if (!lmodel || !prev_inst || !inst.equal_mparams(*prev_inst)) {
1500
if (lmodel) {
0 commit comments