(self)
| 219 | |
| 220 | @property |
| 221 | def __class__(self): |
| 222 | if self.to(GraphModule)._belonged_graph._is_user_mode == True: |
| 223 | return self.to(Module).__class__ |
| 224 | else: |
| 225 | return type(self) |
| 226 | |
| 227 | def __block_forward(self, *args, **kwargs): |
| 228 | self.to(GraphModule)._is_executing_forward = True |
no test coverage detected