| 24 | MEGDNN_OPR_INIT1(LRNForward, "lrn") |
| 25 | |
| 26 | void LRNForward::scn_do_execute() { |
| 27 | if (input(0)->dev_tensor().empty()) { |
| 28 | mgb_assert(output(0)->dev_tensor().empty()); |
| 29 | return; |
| 30 | } |
| 31 | Super::scn_do_execute(); |
| 32 | } |
| 33 | |
| 34 | MAKE_NODE_PROP_WITH_ZERO_SHAPE_1(LRNForward, 0) |
| 35 |
nothing calls this directly
no test coverage detected