()
| 48 | // Test GEMV with identity matrix |
| 49 | #[test] |
| 50 | fn test_gemv_identity() { |
| 51 | let matrix = identity_matrix(VECTOR_SIZE); |
| 52 | let vector = [1.0; VECTOR_SIZE]; |
| 53 | let result = gemv::gemv(&matrix, &vector); |
| 54 | assert_eq!(result, [1.0; VECTOR_SIZE]); |
| 55 | } |
| 56 | |
| 57 | // Test GEMM with identity matrix |
| 58 | #[test] |
nothing calls this directly
no test coverage detected