diff --git a/Doc/Manual/Python.html b/Doc/Manual/Python.html index dfb38e942..c0a7911d1 100644 --- a/Doc/Manual/Python.html +++ b/Doc/Manual/Python.html @@ -136,6 +136,7 @@
+ For the curious about performance, here are some numbers for the profiletest.i test, + which is used to check the speed of the wrapped code: +
+ +| Thread Mode | +Execution Time (sec) | +Comment | +
|---|---|---|
| Single Threaded | +9.6 | +no "-threads" option given | +
| Fully Multithreaded | +15.5 | +"-threads" option = 'allow' + 'block' | +
| No Thread block | +12.2 | +only 'allow' | +
| No Thread Allow | +13.6 | +only block' | +
+ Fullly threaded code decreases the wrapping performance by + around 60%. If that is important to your application, you + can tune each method using the different 'nothread', + 'nothreadblock' or 'nothreadallow' features as + needed. Note that for some methods deactivating the + 'thread block' or 'thread allow' code is not an option, + so, be careful. +
+