code-mesh-core 0.1.0

High-performance, WASM-powered distributed swarm intelligence core library for concurrent code execution and neural mesh computing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Performance benchmarks for code-mesh-core
//
// This module provides comprehensive benchmarking for all core components
// to track performance improvements and detect regressions.

pub mod tool_benchmarks;
pub mod llm_benchmarks;
pub mod session_benchmarks;
pub mod memory_benchmarks;
pub mod storage_benchmarks;
pub mod integration_benchmarks;

pub use tool_benchmarks::*;
pub use llm_benchmarks::*;
pub use session_benchmarks::*;
pub use memory_benchmarks::*;
pub use storage_benchmarks::*;
pub use integration_benchmarks::*;