mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-01-14 00:27:55 +00:00
Docs: Update benchmark for minimax/minimax-m2.1
This commit is contained in:
43
tests/9_stream_visualizer/outputs/minimax_minimax-m2.1.js
Normal file
43
tests/9_stream_visualizer/outputs/minimax_minimax-m2.1.js
Normal file
@@ -0,0 +1,43 @@
|
||||
export async function createStreamVisualizer(asyncIterable, options) {
|
||||
const { maxPoints, alpha, width, height, yDomain } = options;
|
||||
const d3 = await import('https://cdn.jsdelivr.net/npm/d3@7/+esm');
|
||||
|
||||
const data = [];
|
||||
let prevEma = null;
|
||||
|
||||
for await (const point of asyncIterable) {
|
||||
const { timestamp, value } = point;
|
||||
const ema = prevEma === null
|
||||
? value
|
||||
: alpha * value + (1 - alpha) * prevEma;
|
||||
prevEma = ema;
|
||||
|
||||
data.push({ timestamp, value, ema });
|
||||
if (data.length > maxPoints) {
|
||||
data.shift();
|
||||
}
|
||||
}
|
||||
|
||||
if (data.length === 0) {
|
||||
return { data: [], path: '' };
|
||||
}
|
||||
|
||||
const [first, last] = [data[0], data[data.length - 1]];
|
||||
const xScale = d3.scaleLinear()
|
||||
.domain([first.timestamp, last.timestamp])
|
||||
.range([0, width]);
|
||||
|
||||
const yScale = d3.scaleLinear()
|
||||
.domain(yDomain)
|
||||
.range([height, 0]);
|
||||
|
||||
const path = d3.line()
|
||||
.x(d => xScale(d.timestamp))
|
||||
.y(d => yScale(d.ema))
|
||||
.curve(d3.curveLinear)(data);
|
||||
|
||||
return { data, path };
|
||||
}
|
||||
export default createStreamVisualizer;
|
||||
// Generation time: 20.632s
|
||||
// Result: PASS
|
||||
Reference in New Issue
Block a user