burn-candle 0.20.1

Candle backend for the Burn framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
use burn_backend::{
    Backend,
    ops::{TransactionOps, TransactionPrimitive},
};

use crate::{
    Candle,
    element::{FloatCandleElement, IntCandleElement},
};

impl<F: FloatCandleElement, I: IntCandleElement> TransactionOps<Self> for Candle<F, I> {}