System information (version)
Detailed description
[FORWARD] Convolution 557
[SKIPPED] BatchNorm 558
[FORWARD] Relu 559
[FORWARD] Convolution 560
[FORWARD] Convolution 561
[SKIPPED] BatchNorm 562
[FORWARD] Relu 563
code to obtain the above skipped/forward summary
`std::cout << (ld.skip ? "[SKIPPED]" : "[FORWARD]") << ' ' << ld.type << ' ' << ld.name << std::endl;`
in forwardLayer
Relu layers are not fused with convolution. It's because Relu is not the same as ReLU for a case-sensitive string comparison which is what fuseLayers uses to identify layers for fusion.
Steps to reproduce
ONNX model (taken from #16869)
Issue submission checklist