(data)
| 132 | def test_dump_bn_train_mode(): |
| 133 | @trace(symbolic=True, capture_as_const=True) |
| 134 | def bn_train(data): |
| 135 | pred = M.BatchNorm2d(10)(data).sum() |
| 136 | return pred |
| 137 | |
| 138 | data = mge.tensor(np.random.random((10, 10, 10, 10))) |
| 139 | bn_train(data) |
no test coverage detected