mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-04-27 19:52:14 +00:00
Docs: Update benchmark for moonshotai/kimi-k2.6
This commit is contained in:
19
tests/9_stream_visualizer/outputs/moonshotai_kimi-k2.6.js
Normal file
19
tests/9_stream_visualizer/outputs/moonshotai_kimi-k2.6.js
Normal file
@@ -0,0 +1,19 @@
|
||||
const createStreamVisualizer = async (stream, options = {}) => {
|
||||
const { scaleLinear, line } = await import("https://cdn.jsdelivr.net/npm/d3@7/+esm");
|
||||
const { maxPoints = 1e3, alpha = .2, width = 600, height = 400, yDomain } = options;
|
||||
const data = [];
|
||||
let ema;
|
||||
for await (const { timestamp, value } of stream) {
|
||||
ema = data.length ? alpha * value + (1 - alpha) * ema : value;
|
||||
data.push({ timestamp, value, ema });
|
||||
if (data.length > maxPoints) data.shift();
|
||||
}
|
||||
if (!data.length) return { data, path: "" };
|
||||
const x = scaleLinear().domain([data[0].timestamp, data.at(-1).timestamp]).range([0, width]);
|
||||
const y = scaleLinear().domain(yDomain).range([height, 0]);
|
||||
const path = line().x(d => x(d.timestamp)).y(d => y(d.ema))(data);
|
||||
return { data, path };
|
||||
};
|
||||
export default createStreamVisualizer;
|
||||
// Generation time: 68.920s
|
||||
// Result: PASS
|
||||
Reference in New Issue
Block a user