We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd30be9 commit d6c93b4Copy full SHA for d6c93b4
1 file changed
bench/grid-search.js
@@ -150,6 +150,8 @@ async function main() {
150
console.error('Failed to write results:', err?.message ?? err);
151
}
152
process.stderr.write(` -> ${res.success ? `${res.textsPerSec} t/s` : 'failed'}\n`);
153
+ // Also print a compact Result line with the configuration and the measured time
154
+ process.stderr.write(`Result: ${JSON.stringify(conf)} -> ${res.success ? `${res.textsPerSec} t/s` : 'failed'}\n`);
155
156
157
0 commit comments