Making Python fast – Adventures with mypyc
blog.meadsteve.dev
Making Python fast – Adventures with mypyc
1–10 of 95 posts
Re: Making Python fast – Adventures with mypyc
#2The blog post wanders around a little because I had to add setuptools and wheel building as my project had previously skipped this.
Re: Making Python fast – Adventures with mypyc
#3Re: Making Python fast – Adventures with mypyc
#4> for free ... this was a problem as a number of my tests rely on this [incompatible behaviour]
Re: Making Python fast – Adventures with mypyc
#5Do you know if there are any requirements for which modules can be compiled? E.g. can they be imported in other modules or do they have to be a leaf in the import tree/graph ?
Re: Making Python fast – Adventures with mypyc
#6Doubling performance is nice, though it does still leave a lot of performance on the table. I’d be curious to see a comparison between this and Cython.
Re: Making Python fast – Adventures with mypyc
#7Still nice, but not like golang or rust where you have a stand alone solution.
It's an alternative to nuitka, which I recommend to try out.
Re: Making Python fast – Adventures with mypyc
#8Would love to buy you a coffee and hear about your experience and the challenges and benefits.
Re: Making Python fast – Adventures with mypyc
#9Re: Making Python fast – Adventures with mypyc
#10mypyc is cool and all, but I can't help thinking about how Node just JITs everything automatically without the need for any special steps like this.