arrow-graph 0.6.0

Arrow-native graph processing engine with SQL interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// TODO: Fix compilation errors in these modules
// pub mod simd;
// pub mod memory;
// pub mod parallel;
// pub mod profiling;
// pub mod benchmarks;
pub mod simple_benchmarks;

// pub use simd::{SIMDGraphOps, VectorizedComputation};
// pub use memory::{MemoryMappedGraph, MemoryPool, CacheOptimizedStorage};
// pub use parallel::{ParallelGraphProcessor, ThreadPool, WorkStealingQueue};
// pub use profiling::{PerformanceProfiler, MetricsCollector, BenchmarkRunner};
// pub use benchmarks::{GraphBenchmarkSuite, BenchmarkSuiteConfig, TestGraph};
pub use simple_benchmarks::{SimpleBenchmark, SimpleBenchmarkResult, run_all_benchmarks, print_results};