#[cfg(feature = "ml")]
pub mod arrow_tensor;
#[cfg(feature = "ml")]
pub mod pyg;
#[cfg(feature = "ml")]
pub use pyg::PyGData;
pub fn is_ml_enabled() -> bool {
cfg!(feature = "ml")
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_ml_feature_flag() {
assert!(is_ml_enabled() || !is_ml_enabled());
}
}