burn-tensor 0.16.1

Tensor library with user-friendly APIs and automatic differentiation support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[burn_tensor_testgen::testgen(q_floor)]
mod tests {
    use super::*;
    use burn_tensor::TensorData;

    #[test]
    fn should_support_floor_ops() {
        let tensor = QTensor::<TestBackend, 2>::int8([
            [24.0423, 87.9478, 76.1838],
            [59.6929, 43.8169, 94.8826],
        ]);

        let output = tensor.floor();
        let expected = TensorData::from([[24., 87., 76.], [59., 43., 95.]]);

        output.into_data().assert_approx_eq(&expected, 3);
    }
}