| 191 | }; |
| 192 | |
| 193 | class SMEMulShapes final : public ShapeDataset |
| 194 | { |
| 195 | public: |
| 196 | SMEMulShapes() |
| 197 | : ShapeDataset( |
| 198 | "Shape", |
| 199 | { |
| 200 | // Batch size 1 |
| 201 | TensorShape{6U, 1U}, TensorShape{128U, 2U}, TensorShape{128U, 2U, 4U, 2U, 2U} // 5D collapsible case |
| 202 | }) |
| 203 | { |
| 204 | } |
| 205 | }; |
| 206 | |
| 207 | /** Data set containing pairs of small tensor shapes that are broadcast compatible. */ |
| 208 | class SMEMulShapesBroadcast final : public framework::dataset::ZipDataset<ShapeDataset, ShapeDataset> |
no outgoing calls
no test coverage detected