Lets Talk About Something Diabolical: A PyPy Intro (David Beazley PyCon keynote)
1–10 of 15 posts
Re: Lets Talk About Something Diabolical: A PyPy Intro (David Beazley PyCon keynote)
#2Re: Lets Talk About Something Diabolical: A PyPy Intro (David Beazley PyCon keynote)
#3Re: Lets Talk About Something Diabolical: A PyPy Intro (David Beazley PyCon keynote)
#4Re: Lets Talk About Something Diabolical: A PyPy Intro (David Beazley PyCon keynote)
#5Re: Lets Talk About Something Diabolical: A PyPy Intro (David Beazley PyCon keynote)
#6Also, David Beazley has a great way of making difficult concepts approachable.
Re: Lets Talk About Something Diabolical: A PyPy Intro (David Beazley PyCon keynote)
#7Re: Lets Talk About Something Diabolical: A PyPy Intro (David Beazley PyCon keynote)
#8Why Ruby and PyPy looks similar in this benchmark?
Re: Lets Talk About Something Diabolical: A PyPy Intro (David Beazley PyCon keynote)
#9Can somebody explain the end of lecture? Why Ruby and PyPy looks similar in this benchmark?
Re: Lets Talk About Something Diabolical: A PyPy Intro (David Beazley PyCon keynote)
#10Can somebody explain the end of lecture? Why Ruby and PyPy looks similar in this benchmark?
GIL: The global interpreter lock, basically a single lock that threads running in Python or Ruby synchronize on frequently to sync up, which causes problems in multithreaded applications.
Priority inversion: I don't think I'm qualified to explain this clearly, so I'll defer to wikipedia: https://en.wikipedia.org/wiki/Priority_inversion
The later slide where he showed PyPy having terrible performance on a benchmark where the other two code bases worked fine was an unrelated problem.
His point was that whereas he was able to dig into the Ruby implementation and figure out why it was running slow, it was much harder to find the reason why PyPy was not performing as it should due to the implementation complexity.
It is basically tying back to the analogy of the VW versus the Porsche. He could often fix his VW using a pocket knife, which would be very difficult to do with a Porsche.