Re: [IronPython] Performance issue when calling a function with **kw

2008-08-05 Thread Sanghyeon Seo
2008/8/6 Dino Viehland <[EMAIL PROTECTED]>: > On my machine it is about 40% faster in 2.0 than 1.1.1 but still about 2x > slower than CPython I don't see this speedup on Mono. I should file a Mono perf bug. -- Seo Sanghyeon ___ Users mailing list User

Re: [IronPython] Performance issue when calling a function with **kw

2008-08-05 Thread Dino Viehland
] [mailto:[EMAIL PROTECTED] On Behalf Of Sanghyeon Seo Sent: Sunday, August 03, 2008 3:47 AM To: Discussion of IronPython Subject: Re: [IronPython] Performance issue when calling a function with **kw 2008/8/3 Asaf Kleinbort <[EMAIL PROTECTED]>: > Calling a function with **kw takes about 10 t

Re: [IronPython] Performance issue when calling a function with **kw

2008-08-04 Thread Curt Hagenlocher
There is a bit of extra code that's run when there are keyword arguments, but I don't think it should make this kind of difference. Please file a bug report in CodePlex at http://www.codeplex.com/IronPython/WorkItem/List.aspx. On Sun, Aug 3, 2008 at 3:31 AM, Asaf Kleinbort <[EMAIL PROTECTED]>wrot

Re: [IronPython] Performance issue when calling a function with **kw

2008-08-03 Thread Sanghyeon Seo
2008/8/3 Asaf Kleinbort <[EMAIL PROTECTED]>: > Calling a function with **kw takes about 10 times more time than calling a > function with a simple dictionary. The difference exists also in cpython > but there the differences is hardly noticed. > > Does anyone know if this is going to improve in ve

[IronPython] Performance issue when calling a function with **kw

2008-08-03 Thread Asaf Kleinbort
Hi all, I am new to this list, so I'll first introduce myself. I am working at IT Structures (www.itstructures.com) in Israel. Our service Is written in C#, but most of the backend implementation is written in IronPython. While doing performance analysis of our application, I came across the fo