Data set containing tiny tensor shapes. */
| 144 | |
| 145 | /** Data set containing tiny tensor shapes. */ |
| 146 | class TinyShapes final : public ShapeDataset |
| 147 | { |
| 148 | public: |
| 149 | TinyShapes() |
| 150 | : ShapeDataset("Shape", |
| 151 | { |
| 152 | // Batch size 1 |
| 153 | TensorShape{1U, 9U}, |
| 154 | TensorShape{27U, 13U, 2U}, |
| 155 | }) |
| 156 | { |
| 157 | } |
| 158 | }; |
| 159 | /** Data set containing small tensor shapes with none of the dimensions equal to 1 (unit). */ |
| 160 | class SmallNoneUnitShapes final : public ShapeDataset |
| 161 | { |
no outgoing calls
no test coverage detected