diff --git a/kipina-codebench/benchmark.mjs b/kipina-codebench/benchmark.mjs index 17db719..dd5342f 100644 --- a/kipina-codebench/benchmark.mjs +++ b/kipina-codebench/benchmark.mjs @@ -389,6 +389,8 @@ async function runPipeline(model, scenario, round = 1) { if (code) { files[fileDef.name] = code + '\n'; context += `=== ${fileDef.name} ===\n${code}\n\n`; + const loc = code.split('\n').length; + console.log(` [3/5] ${fileResp.tokens} tok, ${loc} lines, ${fileResp.tokPerSec.toFixed(0)} tok/s`); } } writeFileSync(`${dir}/_code_raw.txt`, context);