1#![doc = include_str!("../README.md")]
2#![allow(non_snake_case)]
3#![allow(clippy::type_complexity)]
4#![allow(clippy::too_many_arguments)]
5#![allow(dead_code)]
8
9#[cfg(feature = "mimalloc")]
10#[global_allocator]
11static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
12
13#[cfg(feature = "jemalloc")]
14#[global_allocator]
15static GLOBAL: tikv_jemallocator::Jemalloc = tikv_jemallocator::Jemalloc;
16
17#[cfg(feature = "ai")]
18pub mod ai;
19#[doc(hidden)]
20mod macros;
21pub mod quant;
22pub mod stats;
23pub mod stochastic;