| 49 | }; |
| 50 | |
| 51 | class SmallerMatMulDataset final : public MatMulDataset |
| 52 | { |
| 53 | public: |
| 54 | SmallerMatMulDataset() |
| 55 | { |
| 56 | add_config(TensorShape(9U, 6U), TensorShape(5U, 9U), TensorShape(5U, 6U)); |
| 57 | add_config(TensorShape(8U, 4U, 2U), TensorShape(16U, 8U, 2U), TensorShape(16U, 4U, 2U)); |
| 58 | add_config(TensorShape(32U, 2U), TensorShape(17U, 32U), TensorShape(17U, 2U)); |
| 59 | } |
| 60 | }; |
| 61 | |
| 62 | class TinyMatMulDataset final : public MatMulDataset |
| 63 | { |
no outgoing calls
no test coverage detected