| 826 | } |
| 827 | |
| 828 | struct conv2_strided_params { |
| 829 | string testname_; |
| 830 | dim4 signal_sz_, filt_sz_, stride_, padding_, dilation_; |
| 831 | |
| 832 | conv2_strided_params(string testname, dim4 signal_sz, dim4 filt_sz, |
| 833 | dim4 stride, dim4 padding, dim4 dilation) |
| 834 | : testname_(testname) |
| 835 | , signal_sz_(signal_sz) |
| 836 | , filt_sz_(filt_sz) |
| 837 | , stride_(stride) |
| 838 | , padding_(padding) |
| 839 | , dilation_(dilation) {} |
| 840 | }; |
| 841 | |
| 842 | template<typename TestClass> |
| 843 | string testNameGenerator( |
no outgoing calls
no test coverage detected