| 352 | return 0; |
| 353 | } |
| 354 | int main(int argc, char* argv[]) |
| 355 | { |
| 356 | const char* test_node_name = "test"; |
| 357 | |
| 358 | init_tengine(); |
| 359 | |
| 360 | test(test_node_name, 30, 6, 7, TENGINE_LAYOUT_NHWC, 1, 3, 0, 0, 0, 0); |
| 361 | test(test_node_name, 30, 6, 7, TENGINE_LAYOUT_NHWC, 1, 3, 0, 0, 0, 1); |
| 362 | test(test_node_name, 30, 6, 7, TENGINE_LAYOUT_NHWC, 1, 3, 0, 0, 0, 2); |
| 363 | test(test_node_name, 30, 6, 7, TENGINE_LAYOUT_NHWC, 1, 3, 0, 0, 0, 3); |
| 364 | |
| 365 | test(test_node_name, 30, 6, 7, TENGINE_LAYOUT_NHWC, 1, 0, 10, 10, 10, 0); |
| 366 | |
| 367 | release_tengine(); |
| 368 | return 0; |
| 369 | } |
nothing calls this directly
no test coverage detected