Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.025 X-Spam-Evidence: '*H*': 0.95; '*S*': 0.00; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'python': 0.11; '-o2': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'tends': 0.16; 'wrote:': 0.18; 'bit': 0.19; 'numerical': 0.19; 'header:User-Agent:1': 0.23; 'header:X-Complaints-To:1': 0.27; 'array': 0.29; 'compared': 0.30; 'received:138': 0.31; 'computing': 0.35; 'but': 0.35; 'performance': 0.37; 'e.g.': 0.38; 'to:addr:python-list': 0.38; 'though,': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'easy': 0.60; 'ian': 0.60; 'most': 0.60; 'more': 0.64; 'comparable': 0.84; 'computing.': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Sturla Molden Subject: Re: Fortran Date: Wed, 14 May 2014 23:05:44 +0000 (UTC) References: <87mweotfe5.fsf@dpt-info.u-strasbg.fr> <87iopbtmh1.fsf@dpt-info.u-strasbg.fr> <871tvxtwgj.fsf@dpt-info.u-strasbg.fr> <8761l9pi3n.fsf@elektro.pacujo.net> <5372b488$0$29977$c3e8da3$5496439d@news.astraweb.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Gmane-NNTP-Posting-Host: 138.124.94.181 User-Agent: NewsTap/4.0.1 (iPad) X-: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 12 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1400108766 news.xs4all.nl 2946 [2001:888:2000:d::a6]:54031 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:71581 Ian Kelly wrote: > Also numba, which is reminiscent of psyco, but with more features and > Python 3 support. For numerical computing with NumPy, Numba tends to give performance comparable to -O2 in C. This is because it is very easy to do type inference in most scientific array computing. Numba is still a bit immature, though, compared to e.g. Cython. Sturla