(
bitnet_model, input_value, expected_output_shape
)
| 254 | ], |
| 255 | ) |
| 256 | def test_bitnet_transformer_output_shapes( |
| 257 | bitnet_model, input_value, expected_output_shape |
| 258 | ): |
| 259 | logits = bitnet_model(input_value) |
| 260 | assert logits.shape == expected_output_shape |
| 261 | |
| 262 | |
| 263 | def test_exceptions_on_wrong_dtype(): |
nothing calls this directly
no test coverage detected