wifi-densepose/vendor/sublinear-time-solver/crates/strange-loop/benchmark/benchmark-suite.js

215 lines
10 KiB
JavaScript

#!/usr/bin/env node
const wasm = require('../wasm/strange_loop.js');
const { performance } = require('perf_hooks');
// Initialize WASM
wasm.init_wasm();
console.log('╔════════════════════════════════════════════════════════════════════╗');
console.log('║ STRANGE LOOPS PERFORMANCE BENCHMARK SUITE ║');
console.log('╚════════════════════════════════════════════════════════════════════╝\n');
class Benchmark {
constructor(name, fn, iterations = 1000) {
this.name = name;
this.fn = fn;
this.iterations = iterations;
this.results = [];
}
run() {
// Warmup
for (let i = 0; i < 10; i++) {
this.fn();
}
// Actual benchmark
const times = [];
for (let i = 0; i < this.iterations; i++) {
const start = performance.now();
this.fn();
const end = performance.now();
times.push(end - start);
}
// Calculate statistics
times.sort((a, b) => a - b);
const min = times[0];
const max = times[times.length - 1];
const mean = times.reduce((a, b) => a + b) / times.length;
const median = times[Math.floor(times.length / 2)];
const p95 = times[Math.floor(times.length * 0.95)];
const p99 = times[Math.floor(times.length * 0.99)];
const stdDev = Math.sqrt(times.reduce((acc, t) => acc + Math.pow(t - mean, 2), 0) / times.length);
return {
name: this.name,
iterations: this.iterations,
min: min.toFixed(4),
max: max.toFixed(4),
mean: mean.toFixed(4),
median: median.toFixed(4),
p95: p95.toFixed(4),
p99: p99.toFixed(4),
stdDev: stdDev.toFixed(4),
opsPerSec: Math.round(1000 / mean)
};
}
}
// Define benchmark suites
const benchmarks = {
'Nano-Agent Operations': [
new Benchmark('create_nano_swarm(10)', () => wasm.create_nano_swarm(10)),
new Benchmark('create_nano_swarm(100)', () => wasm.create_nano_swarm(100)),
new Benchmark('create_nano_swarm(1000)', () => wasm.create_nano_swarm(1000)),
new Benchmark('run_swarm_ticks(100)', () => wasm.run_swarm_ticks(100)),
new Benchmark('run_swarm_ticks(1000)', () => wasm.run_swarm_ticks(1000)),
new Benchmark('benchmark_nano_agents(50)', () => wasm.benchmark_nano_agents(50)),
],
'Quantum Operations': [
new Benchmark('quantum_superposition(2)', () => wasm.quantum_superposition(2)),
new Benchmark('quantum_superposition(4)', () => wasm.quantum_superposition(4)),
new Benchmark('quantum_superposition(8)', () => wasm.quantum_superposition(8)),
new Benchmark('measure_quantum_state(4)', () => wasm.measure_quantum_state(4)),
new Benchmark('quantum_classical_hybrid(3,64)', () => wasm.quantum_classical_hybrid(3, 64)),
],
'Consciousness Evolution': [
new Benchmark('evolve_consciousness(10)', () => wasm.evolve_consciousness(10)),
new Benchmark('evolve_consciousness(100)', () => wasm.evolve_consciousness(100)),
new Benchmark('evolve_consciousness(1000)', () => wasm.evolve_consciousness(1000)),
new Benchmark('calculate_phi(10,30)', () => wasm.calculate_phi(10, 30)),
new Benchmark('verify_consciousness(0.5,0.7,0.6)', () => wasm.verify_consciousness(0.5, 0.7, 0.6)),
],
'Strange Attractors': [
new Benchmark('create_lorenz_attractor', () => wasm.create_lorenz_attractor(10, 28, 2.667)),
new Benchmark('step_attractor(1,1,1,0.01)', () => wasm.step_attractor(1, 1, 1, 0.01)),
new Benchmark('step_attractor(10,10,10,0.001)', () => wasm.step_attractor(10, 10, 10, 0.001)),
],
'Sublinear Solvers': [
new Benchmark('solve_linear_system(100)', () => wasm.solve_linear_system_sublinear(100, 0.001)),
new Benchmark('solve_linear_system(1000)', () => wasm.solve_linear_system_sublinear(1000, 0.001)),
new Benchmark('solve_linear_system(10000)', () => wasm.solve_linear_system_sublinear(10000, 0.001)),
new Benchmark('compute_pagerank(1000)', () => wasm.compute_pagerank(1000, 0.85)),
new Benchmark('compute_pagerank(10000)', () => wasm.compute_pagerank(10000, 0.85)),
],
'Temporal Operations': [
new Benchmark('create_retrocausal_loop(100)', () => wasm.create_retrocausal_loop(100)),
new Benchmark('predict_future_state(10,500)', () => wasm.predict_future_state(10, 500)),
new Benchmark('detect_temporal_patterns(1000)', () => wasm.detect_temporal_patterns(1000)),
],
'Convergence Loops': [
new Benchmark('create_lipschitz_loop(0.9)', () => wasm.create_lipschitz_loop(0.9)),
new Benchmark('verify_convergence(0.9,100)', () => wasm.verify_convergence(0.9, 100)),
new Benchmark('create_self_modifying_loop(0.7)', () => wasm.create_self_modifying_loop(0.7)),
],
};
// Run benchmarks
console.log('Running benchmarks with 1000 iterations each...\n');
const allResults = {};
let totalOps = 0;
let totalBenchmarks = 0;
for (const [category, categoryBenchmarks] of Object.entries(benchmarks)) {
console.log(`\n━━━ ${category} ━━━`);
console.log('┌─────────────────────────────────┬──────────┬──────────┬──────────┬──────────┬──────────┐');
console.log('│ Operation │ Mean(ms) │ Med(ms) │ P95(ms) │ P99(ms) │ Ops/Sec │');
console.log('├─────────────────────────────────┼──────────┼──────────┼──────────┼──────────┼──────────┤');
const categoryResults = [];
for (const benchmark of categoryBenchmarks) {
const result = benchmark.run();
categoryResults.push(result);
totalOps += result.opsPerSec;
totalBenchmarks++;
const name = result.name.padEnd(31);
const mean = result.mean.padStart(8);
const median = result.median.padStart(8);
const p95 = result.p95.padStart(8);
const p99 = result.p99.padStart(8);
const ops = result.opsPerSec.toString().padStart(8);
console.log(`${name}${mean}${median}${p95}${p99}${ops}`);
}
console.log('└─────────────────────────────────┴──────────┴──────────┴──────────┴──────────┴──────────┘');
allResults[category] = categoryResults;
}
// Performance Summary
console.log('\n╔════════════════════════════════════════════════════════════════════╗');
console.log('║ PERFORMANCE SUMMARY ║');
console.log('╚════════════════════════════════════════════════════════════════════╝\n');
// Find best and worst performers
let bestOps = 0;
let worstOps = Infinity;
let bestName = '';
let worstName = '';
for (const [category, results] of Object.entries(allResults)) {
for (const result of results) {
if (result.opsPerSec > bestOps) {
bestOps = result.opsPerSec;
bestName = result.name;
}
if (result.opsPerSec < worstOps) {
worstOps = result.opsPerSec;
worstName = result.name;
}
}
}
console.log(`Total Benchmarks Run: ${totalBenchmarks}`);
console.log(`Average Operations/Second: ${Math.round(totalOps / totalBenchmarks)}`);
console.log(`\nFastest Operation: ${bestName} (${bestOps} ops/sec)`);
console.log(`Slowest Operation: ${worstName} (${worstOps} ops/sec)`);
// Category summaries
console.log('\n━━━ Category Performance ━━━');
for (const [category, results] of Object.entries(allResults)) {
const avgOps = Math.round(results.reduce((acc, r) => acc + r.opsPerSec, 0) / results.length);
const avgMean = (results.reduce((acc, r) => acc + parseFloat(r.mean), 0) / results.length).toFixed(4);
console.log(`${category}: ${avgOps} ops/sec (avg ${avgMean}ms)`);
}
// Theoretical throughput calculations
console.log('\n━━━ Theoretical Throughput ━━━');
const nanoAgentThroughput = 40_000; // 25μs per tick = 40k ops/sec
const quantumStates = Math.pow(2, 8); // 8 qubits
const consciousnessIterations = 1000;
console.log(`Nano-Agent Max Throughput: ${nanoAgentThroughput.toLocaleString()} agents/sec`);
console.log(`Quantum State Space (8 qubits): ${quantumStates} states`);
console.log(`Consciousness Evolution Rate: ${Math.round(1000 / parseFloat(allResults['Consciousness Evolution'][2].mean))} iterations/sec`);
// WASM overhead analysis
console.log('\n━━━ WASM Performance Analysis ━━━');
const wasmOverhead = 0.001; // ~1μs WASM call overhead
console.log(`Estimated WASM call overhead: ~${wasmOverhead}ms`);
console.log(`Native Rust performance would be ~${((1 - wasmOverhead/0.01) * 100).toFixed(1)}% faster`);
// Final performance grade
const performanceScore = Math.min(100, (totalOps / totalBenchmarks / 1000) * 100);
const grade = performanceScore >= 90 ? 'A+' :
performanceScore >= 80 ? 'A' :
performanceScore >= 70 ? 'B' :
performanceScore >= 60 ? 'C' : 'D';
console.log(`\n╔════════════════════════════════════════════════════════════════════╗`);
console.log(`║ Performance Grade: ${grade} (${performanceScore.toFixed(1)}/100) ║`);
console.log(`╚════════════════════════════════════════════════════════════════════╝`);
process.exit(0);