You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#include <FunctionProfiling>
#include "igortest"
Function Test()
variable i
for(i = 0; i < 10e2; i += 1)
print "a"
endfor
End
Function runme_ignore()
runtest("Procedure")
beginFunctionProfiling(testtime = 10)
IUTF_JUnit#JU_WriteOutput()
EndFunctionProfiling()
End
can be optimized by splitting the content in a text wave first and then iterating over it. The current approach has to many StringFromList calls which are really slow because it needs to scan the whole string repeatedly.
IP9.03 r40067
Code:
Profiling output:
Trimming the string should not be that slow. With > IP7 one can use multithread statements with text waves, maybe that is faster.
The text was updated successfully, but these errors were encountered: