()
| 67 | // Test GEMV with zero matrix |
| 68 | #[test] |
| 69 | fn test_gemv_zero() { |
| 70 | let matrix = zero_matrix(VECTOR_SIZE); |
| 71 | let vector = [1.0; VECTOR_SIZE]; |
| 72 | let result = gemv::gemv(&matrix, &vector); |
| 73 | assert_eq!(result, [0.0; VECTOR_SIZE]); |
| 74 | } |
| 75 | |
| 76 | // Test GEMM with zero matrix |
| 77 | #[test] |
nothing calls this directly
no test coverage detected