gradcheck 0.1.0

Finite-difference gradient checking for Rust ML frameworks. Verifies an autodiff engine against an independent numerical oracle, with a negative control that must fail.
1
2
3
4
5
6
7
8
9
10
11
12
13
// gradcheck — finite-difference gradient checking for Rust ML frameworks.
// Copyright (c) 2026 Henos D <henosd19@gmail.com> (GitHub: @4ktLuffy)
// Repository: https://github.com/4ktLuffy/gradcheck
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Framework adapters.
//!
//! Each adapter implements [`crate::Backend`] for one framework. They are feature-gated so
//! the core crate has no heavy dependencies: enabling `burn` pulls in `burn-tensor`, and
//! nothing else does.

#[cfg(feature = "burn")]
pub mod burn;