-
Hi, I am wondering if there is any way to make decompilation in python using all available cores. Part of code I am using now:
To decompile entire app it required around 30minutes and i would like to speedup this process. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
There is a parallel decompiler class you can use. It is used in some of the analyzers that use the decompiler. I forget the name of the class. It has parallel in the name though. Edit: see ParallelDecompiler Also I haven't checked your example to be sure but be aware of the |
Beta Was this translation helpful? Give feedback.
-
Some uses of the |
Beta Was this translation helpful? Give feedback.
There is a parallel decompiler class you can use. It is used in some of the analyzers that use the decompiler. I forget the name of the class. It has parallel in the name though.
Edit: see ParallelDecompiler
Also I haven't checked your example to be sure but be aware of the
Disposable
interface. Failure to calldispose
may be a resource leak.