(self)
| 184 | |
| 185 | class SubModule1(flow.nn.Module): |
| 186 | def __init__(self): |
| 187 | super().__init__() |
| 188 | self.fc1 = flow.nn.Linear(36, 4, False) |
| 189 | self.register_buffer("dummy_buff", flow.Tensor(1, 4)) |
| 190 | |
| 191 | def forward(self, x): |
| 192 | scope = scope_util.current_scope() |
nothing calls this directly
no test coverage detected