We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
daam/daam/trace.py
Lines 281 to 282 in a323129
This hook doesn't unhook which can cause problems for the network in the future.
So I added a capture of the original processor and then added an unhook impl to set it back to the original processor.
def _hook_impl(self): self.original_processor = self.module.processor self.module.set_processor(self) def _unhook_impl(self): self.module.set_processor(self.original_processor)
I can make a PR in the future but in a messy situation at the moment.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
daam/daam/trace.py
Lines 281 to 282 in a323129
This hook doesn't unhook which can cause problems for the network in the future.
So I added a capture of the original processor and then added an unhook impl to set it back to the original processor.
I can make a PR in the future but in a messy situation at the moment.
The text was updated successfully, but these errors were encountered: