Move 17 library crates into crates/, CLI binary into bin/fxt, consolidate 10 test crates into testing/, split config crate from deployment config files. Root directory reduced from 38+ to ~17 directories. All Cargo.toml paths and build.rs proto refs updated. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
578 B
Rust
17 lines
578 B
Rust
//! GPU Performance Benchmarks for HFT ML Inference
|
|
//!
|
|
//! Validates sub-100us inference requirements with real workloads
|
|
|
|
#[cfg(any(test, feature = "benchmarks"))]
|
|
use std::time::{Duration, Instant};
|
|
|
|
#[cfg(any(test, feature = "benchmarks"))]
|
|
use criterion::{black_box, criterion_group, criterion_main, BenchmarkId, Criterion};
|
|
|
|
#[cfg(any(test, feature = "benchmarks"))]
|
|
use tokio::runtime::Runtime;
|
|
|
|
use crate::liquid::network::LiquidNetworkConfig;
|
|
#[cfg(any(test, feature = "benchmarks"))]
|
|
use crate::liquid::training::{ActivationType, LiquidTrainer, LiquidTrainingConfig};
|