The C-code(using openCV) I have seems to use TBB and I want to compare the performance with the one that does not use TBB.
Is there a way to disable TBB?
The C-code(using openCV) I have seems to use TBB and I want to compare the performance with the one that does not use TBB.
Is there a way to disable TBB?
Copyright © 2021 Jogjafile Inc.
Try
setNumThreads(0)
, or for a more thorough solution, try recompiling the libraries as described here.