Skip to content

Commit eee78fc

Browse files
authored
Merge pull request #31 from certik/blog7
Blog7
2 parents 06db69f + 7e2227f commit eee78fc

File tree

2 files changed

+28
-23
lines changed

2 files changed

+28
-23
lines changed

content/_index.md

Lines changed: 27 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -65,27 +65,32 @@ Please vote on issues in our [issue tracker] that you want us to prioritize
6565
## Links to other available Python compilers:
6666
Name | Total Contributors | Recent Contributors | Total stars
6767
--|--|--|--
68-
[Pytorch](https://github.com/pytorch/pytorch) | 2857 | 75 | 69253
69-
[Pyston](https://github.com/pyston/pyston) | 1263 | 2 | 2426
70-
[Jax](https://github.com/google/jax) | 523 | 60 | 24010
71-
[Cython](https://github.com/cython/cython) | 435 | 18 | 8168
72-
[Numba](https://github.com/numba/numba) | 306 | 25 | 8790
73-
[Cupy](https://github.com/cupy/cupy) | 286 | 15 | 7062
74-
[Taichi](https://github.com/taichi-dev/taichi) | 224 | 44 | 23503
75-
[Nuitka](https://github.com/Nuitka/Nuitka) | 138 | 36 | 9385
76-
[Pythran](https://github.com/serge-sans-paille/pythran) | 58 | 9 | 1912
77-
[Pypy.org](https://github.com/pypy/pypy.org) | 36 | 5 | 21
78-
[Weld](https://github.com/weld-project/weld) | 35 | 0 | 2945
79-
[LPython](https://github.com/lcompilers/lpython) | 34 | 28 | 141
80-
[Ironpython3](https://github.com/IronLanguages/ironpython3) | 33 | 5 | 2179
81-
[Pyccel](https://github.com/pyccel/pyccel) | 32 | 17 | 279
82-
[Pyjs](https://github.com/pyjs/pyjs) | 30 | 0 | 1123
83-
[Grumpy](https://github.com/google/grumpy) | 29 | 0 | 10580
84-
[Uarray](https://github.com/Quansight-Labs/uarray) | 22 | 1 | 98
85-
[Shedskin](https://github.com/shedskin/shedskin) | 20 | 7 | 701
86-
[Jython](https://github.com/jython/jython) | 18 | 4 | 897
87-
[Seq](https://github.com/seq-lang/seq) | 9 | 0 | 680
88-
[Hope](https://github.com/jakeret/hope) | 6 | 0 | 385
89-
[Transonic](https://github.com/fluiddyn/transonic) | 3 | 1 | 105
68+
[Pytorch](https://github.com/pytorch/pytorch) | 2857 | 69253
69+
[Pyston](https://github.com/pyston/pyston) | 1263 | 2426
70+
[Jax](https://github.com/google/jax) | 523 | 24010
71+
[Cython](https://github.com/cython/cython) | 435 | 8168
72+
[Numba](https://github.com/numba/numba) | 306 | 8790
73+
[Cupy](https://github.com/cupy/cupy) | 286 | 7062
74+
[Taichi](https://github.com/taichi-dev/taichi) | 224 | 23503
75+
[Nuitka](https://github.com/Nuitka/Nuitka) | 138 | 9385
76+
[Pythran](https://github.com/serge-sans-paille/pythran) | 58 | 1912
77+
[Pypy](https://github.com/pypy/pypy.org) | - | -
78+
[Weld](https://github.com/weld-project/weld) | 35 | 2945
79+
[LPython](https://github.com/lcompilers/lpython) | 34 | 141
80+
[Ironpython3](https://github.com/IronLanguages/ironpython3) | 33 | 2179
81+
[Pyccel](https://github.com/pyccel/pyccel) | 32 | 279
82+
[Pyjs](https://github.com/pyjs/pyjs) | 30 | 1123
83+
[Grumpy](https://github.com/google/grumpy) | 29 | 10580
84+
[Uarray](https://github.com/Quansight-Labs/uarray) | 22 | 98
85+
[Shedskin](https://github.com/shedskin/shedskin) | 20 | 701
86+
[Jython](https://github.com/jython/jython) | 18 | 897
87+
[Codon](https://github.com/exaloop/codon) | 10 | 13060
88+
[Seq](https://github.com/seq-lang/seq) | 9 | 680
89+
[Hope](https://github.com/jakeret/hope) | 6 | 385
90+
[Mojo](https://github.com/modularml/mojo) | 4 | 9088
91+
[Transonic](https://github.com/fluiddyn/transonic) | 3 | 105
92+
93+
Note: we use "-" if there is no github repository. If any compiler is missing,
94+
or the stats are inaccurate, please let us know.
9095

9196
[issue tracker]: https://github.com/lcompilers/lpython/issues

content/index_intro/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ date: 2023-07-28
66
LPython is a Python compiler that aims to provide optimized machine code by compiling type-annotated Python code. It offers several backends, including LLVM, C, C++, and WASM, which allow it to generate code into multiple target languages simultaneously. LPython's main focus is on speed and performance, and it achieves this through various features and optimizations.
77

88
LPython is still in development (alpha stage) and may evolve further to encompass more extensive Python code and additional optimizations.
9-
[LPython: Making Python faster with LLVM](/blog/2023/07/lpython-novel-fast-retargetable-python-compiler/).
9+
[LPython: Novel, Fast, Retargetable Python Compiler](https://lpython.org/blog/2023/07/lpython-novel-fast-retargetable-python-compiler/).
1010

1111
Main repository at GitHub:
1212
[https://github.com/lcompilers/lpython](https://github.com/lcompilers/lpython)

0 commit comments

Comments
 (0)