Re: [IronPython] profiling ironpython application

2008-11-15 Thread Severin
Thanks for the answer. How would you display the times for ALL the methods? On Sat, Nov 15, 2008 at 11:36 AM, Kamil Dworakowski <[EMAIL PROTECTED]>wrote: > I once tried redgate's profiler, they have a trial version. Along with > your methods it would also display the times for all the methods in

Re: [IronPython] profiling ironpython application

2008-11-15 Thread Kamil Dworakowski
I once tried redgate's profiler, they have a trial version. Along with your methods it would also display the times for all the methods in IronPython itself (can be filtered out for the most part if I remember correctly). Anyway, I prefer pritlining. On Thu, Nov 13, 2008 at 4:08 PM, Severin <[EMAI

Re: [IronPython] profiling ironpython application

2008-11-13 Thread orip
I'm interested in this as well - the last time a colleague tried this I think the .NET profiler didn't help. On Nov 13, 6:08 pm, Severin <[EMAIL PROTECTED]> wrote: > Hello, > > how do I profile a ironpython application? profile in a similar way as > 'cProfile' with CPython. > > my idea was to comp

[IronPython] profiling ironpython application

2008-11-13 Thread Severin
Hello, how do I profile a ironpython application? profile in a similar way as 'cProfile' with CPython. my idea was to compile the application and then run it using a .net profiler. is that the way to go? has anyone some experience with this? or any suggestion for a good profiler. thanks ___