Data set containing small tensor shapes with none of the dimensions equal to 1 (unit). */
| 158 | }; |
| 159 | /** Data set containing small tensor shapes with none of the dimensions equal to 1 (unit). */ |
| 160 | class SmallNoneUnitShapes final : public ShapeDataset |
| 161 | { |
| 162 | public: |
| 163 | SmallNoneUnitShapes() |
| 164 | : ShapeDataset("Shape", |
| 165 | {// Batch size 1 |
| 166 | TensorShape{13U, 11U}, TensorShape{16U, 16U}, TensorShape{24U, 26U, 5U}, |
| 167 | TensorShape{7U, 7U, 17U, 2U}, |
| 168 | // Batch size 4 |
| 169 | TensorShape{27U, 13U, 2U, 4U}, |
| 170 | // Arbitrary batch size |
| 171 | TensorShape{8U, 7U, 5U, 5U}}) |
| 172 | { |
| 173 | } |
| 174 | }; |
| 175 | /** Data set containing small tensor shapes. */ |
| 176 | class SmallShapes final : public ShapeDataset |
| 177 | { |
no outgoing calls
no test coverage detected