Mono, Boo, Python, Gnome & IronPython
It has some interesting comments on the role of Python in the Gnome project and IronPython and Boo on Mono:
Python is indeed making great strides as a desktop development platform and am not sure that we are in the business of competing with it. If people like writing Python code, they should just keep writing python code.
Myself, I like the IronPython variation of Python more. IronPython just happens to be JITed Python and in most tests it is faster than CPython. For the past year or so, we have also been in love with Boo, another .NET language. Boo has support for strong typing, so for certain scenarios you will get even better performing code (basically, when you can determine the type of a variable ahead of time, instead of having the variable be entierly late bound).
> in most tests it is faster than CPython.
ReplyDeleteWhat?? in every test I've seen, it's about twice as slow. Where are these tests?
IronPython runs Pystopne quite a bit faster than CPython. For pybench it runs some bits a lot faster, some bits a lot slower and most about the same.
ReplyDeleteI'm not aware of any other benchmarks but there may well be some around. In my experience it feels about the same for most things. :-)
In my experience, ironpython is still a lot slower than cpython, at least 2x. And comparing it to cpython + psyco, it simply can't compete.
ReplyDeleteUnfortunately there are no benchmarks available (only for ironpython/Mono).
Hmmm... well I've been developing almost exclusively with IronPython for nearly two years now. Whilst in some areas it is slower, in others (particularly functional calls and non-exceptional exception handling) it is much faster.
ReplyDeleteOverall it definitely feels similar and certainly not half the speed. Of course for a different application or using particular libraries there may be issues.
@fuzzyman
ReplyDeleteit's nice to heard from you that you're developing with IronPython for nearly two years now, what are you application? WFP? winforms? or ASP.NET?
A spreadsheet application written in IronPython called Resolver. The next blog entry here will be about our free public beta... :-)
ReplyDeleteBoo is at least 3x faster than IronPython..
ReplyDeleteIts the fastest python(-like) language out there.
I hope the IronPython and Boo Guys will bundle their powers and produce THE compiled / .NET language for the next decades
The IronPython guys are working on a dynamic language on top of the Dynamic Language Runtime and are not going to morph IronPython into a statically compiled language.
ReplyDelete