| 36 | namespace datasets |
| 37 | { |
| 38 | class LargeMatMulDataset final : public MatMulDataset |
| 39 | { |
| 40 | public: |
| 41 | LargeMatMulDataset() |
| 42 | { |
| 43 | add_config(TensorShape(21U, 13U, 3U, 2U), TensorShape(33U, 21U, 3U, 2U), TensorShape(33U, 13U, 3U, 2U)); |
| 44 | add_config(TensorShape(38U, 12U, 1U, 5U), TensorShape(21U, 38U, 1U, 5U), TensorShape(21U, 12U, 1U, 5U)); |
| 45 | add_config(TensorShape(45U, 38U, 3U, 2U), TensorShape(21U, 45U, 3U, 2U), TensorShape(21U, 38U, 3U, 2U)); |
| 46 | } |
| 47 | }; |
| 48 | |
| 49 | class HighDimensionalMatMulDataset final : public MatMulDataset |
| 50 | { |
no outgoing calls
no test coverage detected