Tests of quantized matmul+add op
()
| 184 | |
| 185 | |
| 186 | def test_quantized_matmul_add(): |
| 187 | """Tests of quantized matmul+add op""" |
| 188 | verify_quantized_matmul_add(235, 128, 1024) |
| 189 | verify_quantized_matmul_add(235, 128, 1024, True, False) |
| 190 | verify_quantized_matmul_add(235, 128, 1024, False, True) |
| 191 | verify_quantized_matmul_add(235, 128, 1024, True, True) |
| 192 | verify_quantized_matmul_add(1, 16, 4) |
| 193 | verify_quantized_matmul_add(1, 16, 3, True, False) |
| 194 | verify_quantized_matmul_add(1, 16, 3, False, True) |
| 195 | verify_quantized_matmul_add(1, 16, 3, True, True) |
| 196 | |
| 197 | |
| 198 | def verify_batch_matmul( |
no test coverage detected
searching dependent graphs…