Data set containing global pooling tensor shapes. */
| 873 | |
| 874 | /** Data set containing global pooling tensor shapes. */ |
| 875 | class GlobalPoolingShapes final : public ShapeDataset |
| 876 | { |
| 877 | public: |
| 878 | GlobalPoolingShapes() |
| 879 | : ShapeDataset("Shape", |
| 880 | {// Batch size 1 |
| 881 | TensorShape{9U, 9U}, TensorShape{13U, 13U, 2U}, TensorShape{27U, 27U, 1U, 3U}, |
| 882 | // Batch size 4 |
| 883 | TensorShape{31U, 31U, 3U, 4U}, TensorShape{34U, 34U, 2U, 4U}}) |
| 884 | { |
| 885 | } |
| 886 | }; |
| 887 | /** Data set containing tiny softmax layer shapes. */ |
| 888 | class SoftmaxLayerTinyShapes final : public ShapeDataset |
| 889 | { |
no outgoing calls
no test coverage detected