Skip to content

fijal/jitpy

Repository files navigation

jitpy

Library to embed PyPy into CPython. See documentation for more examples.

The simplest example:

from jitpy.wrapper import jittify

@jittify([int, float], float)
def func(count, no):
    s = 0
    for i in range(count):
       s += no
    return s

func(100000000, 1.2)

Runs about 20x faster.

MIT Licensed.

About

Library to embed PyPy into CPython

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages