| 769 | }; |
| 770 | |
| 771 | class SmallDirectConv3DShapes final : public ShapeDataset |
| 772 | { |
| 773 | public: |
| 774 | SmallDirectConv3DShapes() |
| 775 | : ShapeDataset("InputShape", |
| 776 | { |
| 777 | // Batch size 2 |
| 778 | TensorShape{1U, 3U, 4U, 5U, 2U}, |
| 779 | // Batch size 3 |
| 780 | TensorShape{7U, 27U, 3U, 6U, 3U}, |
| 781 | // Batch size 1 |
| 782 | TensorShape{32U, 37U, 13U, 1U, 1U}, |
| 783 | }) |
| 784 | { |
| 785 | } |
| 786 | }; |
| 787 | |
| 788 | /** Data set containing small tensor shapes for direct convolution. */ |
| 789 | class SmallDirectConvolutionTensorShiftShapes final : public ShapeDataset |