Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #39948
| From | Andriy Kornatskyy <andriy.kornatskyy@live.com> |
|---|---|
| Subject | RE: Nuitka now supports Python 3.2 |
| Date | 2013-02-26 16:49 +0300 |
| References | <512ca830$0$30001$c3e8da3$5496439d@news.astraweb.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.2543.1361886648.2939.python-list@python.org> (permalink) |
Steven, Just in case... pypy1.9 runs this test 22x faster than cpython2.7, see below. python2.7 -c "from test import pystone;[pystone.main() for i in range(10)]" Pystone(1.1) time for 50000 passes = 0.62 This machine benchmarks at 80645.2 pystones/second ... Pystone(1.1) time for 50000 passes = 0.53 This machine benchmarks at 94339.6 pystones/second pypy-1.9/bin/pypy -c "from test import pystone;[pystone.main() for i in range(10)]" Pystone(1.1) time for 50000 passes = 0.116008 This machine benchmarks at 431005 pystones/second ... Pystone(1.1) time for 50000 passes = 0.024002 This machine benchmarks at 2.08316e+06 pystones/second Thanks. Andriy Kornatskyy ---------------------------------------- > From: steve+comp.lang.python@pearwood.info > Subject: Nuitka now supports Python 3.2 > Date: Tue, 26 Feb 2013 12:18:56 +0000 > To: python-list@python.org > > Nuitka now supports Python 3.2 syntax and compiles the full CPython 3.2 > test suite. > > http://nuitka.net/posts/nuitka-release-040.html > > > What is Nuitka? > > Nuitka is an implementation of Python written in C++. At the moment it is > claimed to be about 2.5 times as fast as CPython running the pystone > benchmark. Future plans including using type inference and whole program > analysis to optimize Python code using C++ native types. > > Unlike PyPy, which is a JIT compiler, Nuitka is intended as a static > optimizing compiler. > > > -- > Steven > -- > http://mail.python.org/mailman/listinfo/python-list
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Nuitka now supports Python 3.2 Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-02-26 12:18 +0000
RE: Nuitka now supports Python 3.2 Andriy Kornatskyy <andriy.kornatskyy@live.com> - 2013-02-26 16:49 +0300
Re: Nuitka now supports Python 3.2 jmfauth <wxjmfauth@gmail.com> - 2013-02-27 00:21 -0800
Re: Nuitka now supports Python 3.2 jmfauth <wxjmfauth@gmail.com> - 2013-02-27 00:44 -0800
Re: Nuitka now supports Python 3.2 Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-02-27 09:53 +0000
Re: Nuitka now supports Python 3.2 Michael Torrie <torriem@gmail.com> - 2013-02-27 10:43 -0700
Re: Nuitka now supports Python 3.2 Stefan Behnel <stefan_ml@behnel.de> - 2013-02-28 08:07 +0100
Re: Nuitka now supports Python 3.2 Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-02-28 13:23 +0000
Re: Nuitka now supports Python 3.2 Stefan Behnel <stefan_ml@behnel.de> - 2013-02-28 20:03 +0100
csiph-web