()
| 57 | // Test GEMM with identity matrix |
| 58 | #[test] |
| 59 | fn test_gemm_identity() { |
| 60 | let matrix_a = identity_matrix(VECTOR_SIZE); |
| 61 | let matrix_b = identity_matrix(VECTOR_SIZE); |
| 62 | let mut result_matrix = zero_matrix(VECTOR_SIZE); |
| 63 | gemm::gemm(&matrix_a, &matrix_b, &mut result_matrix); |
| 64 | assert_eq!(result_matrix, identity_matrix(VECTOR_SIZE)); |
| 65 | } |
| 66 | |
| 67 | // Test GEMV with zero matrix |
| 68 | #[test] |
nothing calls this directly
no test coverage detected