tenrso_exec/executor/
mod.rs1pub mod advanced_indexing;
4pub mod cpuexecutor_traits;
5pub mod custom_ops;
6pub mod functions;
7#[cfg(test)]
8mod functions_tests;
9pub mod optimized_ops;
10pub mod parallel;
11pub mod pool_heuristics;
12pub mod pooled_ops;
13pub mod simd_ops;
14pub mod thread_local_pool;
15pub mod tiled_reductions;
16pub mod types;
17pub mod vectorized_broadcast;
18
19pub use custom_ops::{apply_custom_unary, custom_binary_op, custom_reduce, custom_unary_op};
21pub use functions::*;
22pub use pool_heuristics::{AccessPatternTracker, PoolingPolicy, PoolingRecommender, PoolingReport};
23pub use thread_local_pool::{AggregatedPoolStats, ThreadLocalPoolManager, ThreadLocalPoolStats};
24pub use types::*;