burn-tensor 0.16.1

Tensor library with user-friendly APIs and automatic differentiation support
Documentation
#[burn_tensor_testgen::testgen(q_arg)]
mod tests {
    use super::*;
    use burn_tensor::TensorData;

    #[test]
    fn test_argmax_2d_dim0() {
        let tensor = QTensor::<TestBackend, 2>::int8([[10.0, 11.0, 2.0], [3.0, 4.0, 5.0]]);

        let output = tensor.argmax(0);

        output
            .into_data()
            .assert_eq(&TensorData::from([[0, 0, 1]]), false);
    }

    #[test]
    fn test_argmin_2d_dim0() {
        let tensor = QTensor::<TestBackend, 2>::int8([[10.0, 11.0, 2.0], [30.0, 4.0, 5.0]]);

        let output = tensor.argmin(0);

        output
            .into_data()
            .assert_eq(&TensorData::from([[0, 1, 0]]), false);
    }

    #[test]
    fn test_argmax_2d_dim1() {
        let tensor = QTensor::<TestBackend, 2>::int8([[10.0, 11.0, 2.0], [3.0, 4.0, 5.0]]);

        let output = tensor.argmax(1);

        output
            .into_data()
            .assert_eq(&TensorData::from([[1], [2]]), false);
    }

    #[test]
    fn test_argmin_2d_dim1() {
        let tensor = QTensor::<TestBackend, 2>::int8([[10.0, 11.0, 2.0], [30.0, 4.0, 5.0]]);

        let output = tensor.argmin(1);

        output
            .into_data()
            .assert_eq(&TensorData::from([[2], [1]]), false);
    }
}