Data set containing small tensor shapes for direct convolution. */
| 754 | }; |
| 755 | /** Data set containing small tensor shapes for direct convolution. */ |
| 756 | class SmallDirectConvolutionShapes final : public ShapeDataset |
| 757 | { |
| 758 | public: |
| 759 | SmallDirectConvolutionShapes() |
| 760 | : ShapeDataset("InputShape", |
| 761 | { |
| 762 | // Batch size 1 |
| 763 | TensorShape{32U, 37U, 3U}, |
| 764 | // Batch size 4 |
| 765 | TensorShape{6U, 9U, 5U, 4U}, |
| 766 | }) |
| 767 | { |
| 768 | } |
| 769 | }; |
| 770 | |
| 771 | class SmallDirectConv3DShapes final : public ShapeDataset |
| 772 | { |
no outgoing calls
no test coverage detected