(self, opt)
| 8 | |
| 9 | class RandomAnalysis(BaseAnalysis): |
| 10 | def __init__(self, opt): |
| 11 | super().__init__(opt) |
| 12 | self.device = torch.device('cuda' if torch.cuda.is_available() else 'cpu') |
| 13 | |
| 14 | def analyze(self): |
| 15 | name_list = [hook.name for hook in self.hook_list] |
nothing calls this directly
no outgoing calls
no test coverage detected