arrow_graph/performance/
mod.rs

1// TODO: Fix compilation errors in these modules
2// pub mod simd;
3// pub mod memory;
4// pub mod parallel;
5// pub mod profiling;
6// pub mod benchmarks;
7pub mod simple_benchmarks;
8
9// pub use simd::{SIMDGraphOps, VectorizedComputation};
10// pub use memory::{MemoryMappedGraph, MemoryPool, CacheOptimizedStorage};
11// pub use parallel::{ParallelGraphProcessor, ThreadPool, WorkStealingQueue};
12// pub use profiling::{PerformanceProfiler, MetricsCollector, BenchmarkRunner};
13// pub use benchmarks::{GraphBenchmarkSuite, BenchmarkSuiteConfig, TestGraph};
14pub use simple_benchmarks::{SimpleBenchmark, SimpleBenchmarkResult, run_all_benchmarks, print_results};