pythran

a claimless python to c++ converter

  • 所有者: serge-sans-paille/pythran
  • 平台:
  • 許可證: BSD 3-Clause "New" or "Revised" License
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

Pythran
#######

http://pythran.readthedocs.io

What is it?

Pythran is an ahead of time compiler for a subset of the Python language, with a
focus on scientific computing. It takes a Python module annotated with a few
interface description and turns it into a native Python module with the same
interface, but (hopefully) faster.

It is meant to efficiently compile scientific programs, and takes advantage
of multi-cores and SIMD instruction units.

Until 0.9.5 (included), Pythran was supporting Python 3 and Python 2.7.
It now only supports Python 3.

Installation

Pythran sources are hosted on https://github.com/serge-sans-paille/pythran.

Pythran releases are hosted on http://pypi.python.org/pypi/pythran.

Pythran is available through Conda on https://anaconda.org/conda-forge/pythran.

Debian/Ubuntu

Using pip


  1. Gather dependencies:

    Pythran depends on a few Python modules and several C++ libraries. On a debian-like platform, run::

     $> sudo apt-get install libatlas-base-dev
     $> sudo apt-get install python-dev python-ply python-networkx python-numpy
    
  2. Use easy_install or pip::

     $> pip install pythran
    

Using conda


  1. Install conda, following the instruction given in
    http://conda.pydata.org/docs/install/quick.html

  2. Run::

    $> conda install -c conda-forge pythran
    

Mac OSX

Using brew (http://brew.sh/)::

$> easy_install pip

$> pip install pythran
$> brew install openblas
$> printf '[compiler]\nblas=openblas\ninclude_dirs=/usr/local/opt/openblas/include\nlibrary_dirs=/usr/local/opt/openblas/lib' > ~/.pythranrc

Depending on your setup, you may need to add the following to your ~/.pythranrc file::

[compiler]
CXX=g++-4.9
CC=gcc-4.9

ArchLinux

Using any working AUR helper <https://wiki.archlinux.org/index.php/AUR_helpers>_, say aurman::

$> aurman -S python-pythran

Fedora

Using dnf::

$> dnf install pythran

Windows

Windows support is on going and only targets Python 3.5+ with either Visual Studio 2017 or, better, clang-cl::

$> pip install pythran

If you plan to use clang-cl, also add the following to %HOMEPATH%/.pythranrc::

[compiler]
CC=clang-cl.exe
CXX=clang-cl.exe

Other Platform

See MANUAL file.

Basic Usage

A simple pythran input could be dprod.py::

"""
Naive dotproduct! Pythran supports numpy.dot
"""
#pythran export dprod(int list, int list)
def dprod(l0,l1):
    """WoW, generator expression, zip and sum."""
    return sum(x * y for x, y in zip(l0, l1))

To turn it into a native module, run::

$> pythran dprod.py

That will generate a native dprod.so that can be imported just like the former
module::

$> python -c 'import dprod' # this imports the native module instead

Documentation

The user documentation is available in the MANUAL file from the doc directory.

The developer documentation is available in the DEVGUIDE file from the doc
directory. There is also a TUTORIAL file for those who don't like reading
documentation.

The CLI documentation is available from the pythran help command::

$> pythran --help

Some extra developer documentation is also available using pydoc. Beware, this
is the computer science incarnation for the famous Where's Waldo? game::

$> pydoc pythran
$> pydoc pythran.typing
$> pydoc -b  # in the browser

Examples

See the pythran/tests/cases/ directory from the sources.

Contact

Praise, flame and cookies:

The mailing list archive is available at http://www.freelists.org/archive/pythran/.

Citing

If you need to cite a Pythran paper, feel free to use::

@article{guelton2015pythran,
  title={Pythran: Enabling static optimization of scientific python programs},
  author={Guelton, Serge and Brunet, Pierrick and Amini, Mehdi and Merlini,
                  Adrien and Corbillon, Xavier and Raynaud, Alan},
  journal={Computational Science \& Discovery},
  volume={8},
  number={1},
  pages={014001},
  year={2015},
  publisher={IOP Publishing}
}

Authors

See AUTHORS file.

License

See LICENSE file.

主要指標

概覽
名稱與所有者serge-sans-paille/pythran
主編程語言C++
編程語言Python (語言數: 7)
平台
許可證BSD 3-Clause "New" or "Revised" License
所有者活动
創建於2012-05-29 08:02:14
推送於2025-05-05 05:59:23
最后一次提交2025-04-22 21:22:52
發布數40
最新版本名稱0.17.0 (發布於 )
第一版名稱0.8.2 (發布於 )
用户参与
星數2.1k
關注者數47
派生數195
提交數3.8k
已啟用問題?
問題數891
打開的問題數134
拉請求數1255
打開的拉請求數14
關閉的拉請求數155
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?