tensorlogic-infer 0.1.0

Execution and autodiff traits for TensorLogic inference engines
Documentation
1
2
3
4
5
6
7
8
9
10
//! Memory-efficient partitioned tensor reductions.
//!
//! Reductions are processed in configurable chunks to bound peak memory usage
//! independently of total tensor size.

pub mod config;
pub mod reducer;

pub use config::{AccumulationStrategy, PartitionConfig};
pub use reducer::{PartitionedError, PartitionedReducer, PartitionedStats};