Data set containing small 3D tensor shapes. */
| 101 | |
| 102 | /** Data set containing small 3D tensor shapes. */ |
| 103 | class Small3DShapes final : public ShapeDataset |
| 104 | { |
| 105 | public: |
| 106 | Small3DShapes() |
| 107 | : ShapeDataset("Shape", |
| 108 | { |
| 109 | TensorShape{1U, 7U, 7U}, |
| 110 | TensorShape{2U, 5U, 4U}, |
| 111 | |
| 112 | TensorShape{7U, 7U, 5U}, |
| 113 | TensorShape{16U, 16U, 5U}, |
| 114 | TensorShape{27U, 13U, 37U}, |
| 115 | }) |
| 116 | { |
| 117 | } |
| 118 | }; |
| 119 | |
| 120 | /** Data set containing tiny 4D tensor shapes. */ |
| 121 | class Tiny4DShapes final : public ShapeDataset |
no outgoing calls
no test coverage detected