entrenar 0.7.10

Training & Optimization library with autograd, LoRA, quantization, and model merging
Documentation
mod test_activations;
mod test_elementwise;
mod test_matmul;
mod test_normalization;

use super::*;

#[test]
fn test_cuda_forward_module_compiles() {
    // This test verifies the module compiles correctly
    assert!(true);
}

#[test]
#[cfg(feature = "cuda")]
fn test_forward_kernel_cache_initialization() {
    use trueno_gpu::driver::{cuda_available, CudaContext};

    if !cuda_available() {
        return;
    }

    let ctx = CudaContext::new(0).expect("operation should succeed");
    let ctx = std::sync::Arc::new(ctx);
    let result = init_forward_kernel_cache(ctx);
    assert!(result.is_ok());
}