#21: PyPy - The JIT Compiled Python Implementation Transcript
00:00 Is your Python code running a little slow?
00:02 Did you know the PyPy runtime could make it run up to 10 times faster?
00:06 Seriously.
00:07 Maja Falkowski is here to tell us all about it.
00:10 This is episode number 21, recorded Wednesday, July 8th, 2015.
00:16 Developers, developers, developers, developers.
00:19 I'm a developer in many senses of the word because I make these applications, but I also
00:25 use these verbs to make this music.
00:27 I construct it line by line, just like when I'm coding another software design.
00:31 In both cases, it's about design patterns.
00:34 Anyone can get the job done.
00:36 It's the execution that matters.
00:37 I have many interests.
00:39 Welcome to Talk Python to Me, a weekly podcast on Python, the language, the libraries, the
00:45 ecosystem, and the personalities.
00:47 This is your host, Michael Kennedy.
00:49 Follow me on Twitter, where I'm @mkennedy.
00:51 Keep up with the show and listen to past episodes at talkpython.fm.
00:56 And follow the show on Twitter via at talkpython.
00:59 This episode, we'll be talking with Maja Falkowski about the amazing alternative Python implementation,
01:05 PyPy.
01:06 This episode is brought to you by Hired and Codeship.
01:10 Thank them for supporting the show via Twitter, where they're at hired underscore HQ,
01:15 and at codechip.
01:16 Before we get to Maja, let me share a little news with you.
01:19 First off, Talk Python to Me has a new domain name, talkpython.fm.
01:24 I put the idea of a shorter .fm-based domain out on Twitter, and I'd say about 80% of the
01:30 listeners said they liked it better than the longer .com domain.
01:32 So here you go.
01:34 About a month ago, I moved all the MP3 file traffic out of Amazon S3 and into a dedicated
01:39 audio file cache server.
01:41 It's a lightweight Flask Python 3 app running through Nginx and Microwiskey.
01:47 A few listeners expressed interest in seeing the code, so I did a little work to try to generalize
01:52 this a bit, and I open sourced it.
01:53 I'm calling the project Cachedier.
01:55 And you can find a blog post as well as a link to the GitHub project on the show notes.
02:01 Next up, we have a new Python podcast.
02:03 I'm super happy to announce a Python podcast by Brian Okken called Python Test Podcast.
02:11 You can find it at pythontesting.net slash category slash podcast.
02:16 Now, let's get on to the show.
02:18 Maja, welcome to the show.
02:19 Thanks for inviting me.
02:20 Yeah, I'm super excited to talk about our topic today, which is PyPy.
02:25 And I think what you guys are doing with PyPy is so incredibly cool to be taking some of
02:32 these JIT compilation GC sort of semi-compiled languages or concepts and applying them to
02:38 Python.
02:38 So really happy to talk about that.
02:40 The story of compiling dynamic languages is really sort of old and half-forgotten.
02:47 Like, we know these days that you can do this with JavaScript, but the original work on small
02:54 talk dates back to at least mid-90s, if not earlier, which is what we are all building on
03:02 top of anyway.
03:03 So it's nothing new.
03:05 The new part is just applying this to Python.
03:07 That's right.
03:09 That's right.
03:09 Well, I think it's great.
03:11 Maybe before we get into the details of what you guys are doing, maybe you could give the
03:16 listeners who are not familiar with PyPy a little history and introduction to it.
03:21 So PyPy is essentially a Python interpreter, which works very, very similarly to the normal
03:29 thing that you would call Python, that technically is called CPython.
03:34 It's a Python interpreter written in C.
03:35 And we have a different Python interpreter, which is implemented slightly differently.
03:40 And for the most part, glancing over all the details, it should run faster on most of the
03:48 examples because it can dynamically compile Python down all the way to the assembler level.
03:55 So it's like a normal Python interpreter, except sometimes faster, most times faster, in fact.
04:02 That's it.
04:03 It sounds very simple, but it's actually quite a big project.
04:07 It has been around more or less 10 years by now.
04:10 Wow.
04:11 It started 10 years ago.
04:12 And when did you get involved with it?
04:14 I got involved, I think, 2006 or 2007.
04:19 I was doing, I sort of got interested in Python static analysis, which PyPy, part of PyPy is doing
04:29 that, is taking a restricted subset of Python, which PyPy is implemented in and compiling it
04:35 down to the C level.
04:36 So I was interested in Python static analysis and I glanced over PyPy project and sort of
04:42 started getting involved.
04:44 And then I got a spot at Google Summer of Code to work on PyPy for the summer.
04:50 And that's essentially how it all started.
04:52 How many people work on PyPy or contribute to PyPy?
04:55 Depending how you count, it's anything between three and 30.
05:00 PyPy is a big umbrella project for a vast variety of anything from, as I said, a Python interpreter
05:09 to very researchy stuff that people at various universities try to experiment with.
05:15 Like there is a couple of people working on running Python and PHP in the same process.
05:22 So you run PHP code in the server, but you can still call Python functions in that process.
05:29 There are people working on software transactional memory.
05:33 So it's a big umbrella project that is a research vehicle for a lot of people, additionally to
05:39 being the Python interpreter.
05:40 Yeah, I can see how that would work for if you're doing some sort of academic research,
05:45 especially something with JIT and GC, then it makes a lot of sense.
05:50 I think one of the things that people either who are new to Python or have kind of dabbled
05:54 in it, but are not, you know, deeply working with it and thinking about the internals of
06:00 it every day, don't realize that there's actually a whole variety of different interpreters out
06:05 there.
06:05 There's a bunch.
06:07 They're all slightly different.
06:10 So let's glance over them because I think it's important to know there's like the CPython is
06:17 the normal Python interpreter that is probably used by 99% of people using Python.
06:22 Yeah.
06:23 If I open up Linux or my Mac and I type the word Python and enter that's CPython, right?
06:27 That's CPython.
06:28 So that's what most people would use.
06:30 CPython internals that you need to know is the fact that it's implemented in C.
06:36 And another internal detail that's important to know is that it exposes the C API, which
06:43 goes quite low.
06:45 So it's possible to write C extensions in C for Python.
06:49 So you write a bunch of C code, use a special API for accessing Python objects, and then it
06:54 can be called from Python code, your C functions.
06:59 Then we have Jiton, which is quite old, actually.
07:04 And it's a Python interpreter written in Java and a similar project called Iron Python, which
07:11 is a Python interpreter written in C#.
07:13 And those two interpreters, they're quite widely used for people who write Java and want a better
07:22 language.
07:22 So they, so their main big advantage is integration with the underlying platform.
07:31 So Jiton is very well integrated with Java and Iron Python with C#.
07:35 So if you're writing C#, but you would really love to write some Python, you can do that these
07:40 days.
07:40 And then there's PyPy, which is another Python interpreter written slightly differently with
07:46 a just-in-time compiler.
07:48 So those are the four main interpreters.
07:50 And there is, there is quite a few projects that try to enter this space, like PyStone, which
07:57 is another Python interpreter written by Dropbox people.
08:00 Yeah.
08:01 I wanted to ask you about PyStone because that's, that seems to me to be somewhat similar to
08:07 what you guys are doing.
08:08 And, and it comes, the fact that it comes from Dropbox where Guido is and a lot, there's a
08:13 lot of sort of gravity for the Python world at Dropbox that made it more interesting to me.
08:17 Do you know anything about it or can you speak to how it compares or the goals or anything
08:21 like that?
08:23 So, well, I know that it's very, very similar to the project that once existed at Google
08:28 called Unladen Swallow.
08:29 So the main idea is that it's a Python interpreter that contains a just-in-time compiler that uses
08:38 LLVM as the underlying assembler platform.
08:41 Let's call it that way.
08:42 And this is the main goal.
08:44 The main goal is to run fast.
08:46 Now, the current status is that it doesn't run fast.
08:50 That's for sure.
08:52 It runs roughly at the same speed as CPython for stuff that I've seen on their website.
08:57 As for the future, I don't know.
09:01 I really think the future is really hard.
09:02 Especially when you don't have much visibility into it, right?
09:06 Yeah.
09:07 Like, I can tell you that like PyPy, PyPy has a bunch of different problems to PyStone.
09:15 So, for example, we consciously choose to not implement the C API at first because the
09:23 C API ties you a lot into the CPython model.
09:28 We choose not to implement it at first.
09:31 We implement it later as a compatibility layer.
09:34 So the first problem is that it's quite slow.
09:38 It's far, far slower than the one in CPython.
09:41 And as far as I know, right now, Dropbox uses the same C API, which gives you a lot of problems,
09:48 like a lot of constraints of your design.
09:51 But also, like, gives you a huge, huge benefit, which is being able to use the same C modules, which are a huge part of the Python ecosystem.
10:00 Yeah, especially some of the really powerful ones that people don't want to live without, things like NumPy and, to a lesser degree, SQLAlchemy, the things that have the C extensions that are really popular as well.
10:11 So you guys don't want to miss out on that, right?
10:14 Right.
10:15 So you brought two interesting examples.
10:18 So, for example, NumPy is so tied to the C API that it's very hard to avoid.
10:24 It's not just NumPy.
10:27 It's the entire ecosystem.
10:28 We, in PyPy, we re-implemented most of NumPy, but we are still missing out on the entire ecosystem.
10:37 And we have some stories how to approach that problem, but it's a hard problem to tackle, that we choose to make harder by not implementing the C API.
10:47 However, for example, the SQLAlchemy stuff.
10:50 SQLAlchemy is Python.
10:53 It's not C, but it uses the database drivers, which are implemented in C, like a lot of them.
11:01 So our answer to that is CFFI, which is a very, very simple way to call C from Python.
11:08 And CFFI took off like crazy.
11:12 Like, for most things, like database drivers, there's a CFFI-ready replacement that works as well and usually a lot better on PyPy that made it possible to use PyPy in places where you would normally not be able to do that.
11:31 And CFFI is like really, really popular.
11:35 It gets like over a million downloads a month, which is quite crazy.
11:39 And CFFI is not just a PyPy thing.
11:42 It also works in CPython, right?
11:44 Yeah, it works in CPython in between like 2.6 and 3.something, I think.
11:50 3.whatever is the latest.
11:51 And it works on both PyPy and PyPy3.
11:54 And since it's so simple, it will probably work one day in JITON too.
12:01 You said you have a plan for the NumPy story and these other heavy sort of C-based ones.
12:07 Currently, the way you support it, this is a question I don't know, is that you've kind of re-implemented a lot of it in Python?
12:15 So we, to be precise, we re-implemented a lot of it in our Python.
12:22 Our Python is the internal language that we use in PyPy.
12:26 Right, that's the restricted Python that you guys actually target, right?
12:29 Yes.
12:30 Yeah, but we don't, generally don't encourage anybody to use it.
12:35 Unless you're writing interpreters, then it's great.
12:38 But if you're not writing interpreters, it's an awful language.
12:41 But we, so the problem with NumPy is that NumPy ties so closely that we added special support in the JIT for parts of it and things like that, that we decided are important enough that you want to have them implement in the core of PyPy.
12:57 So we have, most of NumPy actually works on PyPy.
13:01 And this is sometimes not good enough because if you're using NumPy, chances are you're using SciPy, Scikit, Learn, Matplotlib, and all this stuff.
13:11 We have some story how to use it, which is to, the simplest thing is just to embed the Python interpreter inside PyPy and call it using CFFI.
13:23 It's a great hack.
13:24 It works for us.
13:25 Really?
13:25 You can like fall back to regular Cpython within your PyPy app?
13:30 Yeah, it's called PyMetabiosis.
13:33 That's awesome.
13:34 I'm pretty sure there's at least one video online with the author talking about it.
13:44 It works great for the numeric stack, which is its goal.
13:49 So this is our story.
13:51 We are still raising funds to finish implementing NumPy.
13:56 It says a very, very long tale of features.
13:58 And once we are done with NumPy, we'll try to improve the story of calling other numeric libraries on top of PyPy to be able to mostly seamlessly be able to use stuff like SciPy and Matplotlib.
14:13 It will still take a while.
14:15 I'm not even willing to give an estimate.
14:17 Sure.
14:19 But it's great.
14:20 And it does look like there's a lot of support there.
14:21 We'll talk about that stuff in a little bit because I definitely want to call attention to that and let people know how they can help out.
14:27 Before we get into those kind of details, though, can we talk just briefly about why would I use PyPy or when and why would I use PyPy over, say, CPython or Jython?
14:39 Like, what do you guys excel at?
14:41 When should a person out there is thinking, like, they've just realized, oh, my gosh, there's more than one interpreter?
14:46 How do I choose?
14:48 Like, can you help give some guidance around that?
14:49 So typically, if you just discovered, oh, there's more than one interpreter, you just want to use CPython.
14:55 That's like the simplest answer.
14:57 You want to use CPython, but if you're writing an open source library, you want to support PyPy at least, which is what most people are doing.
15:04 They're using CPython and the libraries support PyPy for the most part.
15:08 Our typical user, and this is a very terrible description, but this is our typical user.
15:14 This episode is brought to you by Hired.
15:27 Hired is a two-sided, curated marketplace that connects the world's knowledge workers to the best opportunities.
15:33 Each offer you receive has salary and equity presented right up front, and you can view the offers to accept or reject them before you even talk to the company.
15:43 Typically, candidates receive five or more offers in just the first week, and there are no obligations, ever.
15:49 Sounds pretty awesome, doesn't it?
15:51 Well, did I mention there's a signing bonus?
15:53 Everyone who accepts a job from Hired gets a $2,000 signing bonus, and as Talk Python listeners, it gets way sweeter.
16:01 Use the link Hired.com slash Talk Python to me, and Hired will double the signing bonus to $4,000.
16:10 Opportunity's knocking.
16:11 Visit Hired.com slash Talk Python to me and answer the call.
16:14 You have a large Python application that's spanning servers, serving millions of users,
16:30 and you're running into corners.
16:33 Like, you can't serve requests quickly enough.
16:37 You can't serve enough users from machine.
16:40 You're running into problems.
16:41 Now, your application is too big to, say, rewrite it in C or Go, or it's just, like, too scary for whatever reason.
16:50 So, you look, like, what it would take to run stuff in PyPy.
16:54 It usually takes, like, a bit of, your code should run, but it usually takes a bit of effort to, like, see what sort of libraries do you use.
17:06 Do you use NSE extensions?
17:07 If their C extensions are, like, crucial, can you replace them with something?
17:11 So, yeah, this is our typical user.
17:13 And I have people, I run a consulting company that does that.
17:18 There are people coming and asking, like, okay, I have this set up.
17:22 It's impossible to do anything with it now.
17:25 Can I just, like, swap the interpreters, make it run faster, and make the problems go away?
17:30 This is our typical user.
17:33 I hear why you described it that way is maybe not the best way, but, you know, you're right.
17:38 If you have 100,000, half a million lines of Python, and really you just need to make it a little faster.
17:44 If switching to a different interpreter like PyPy will solve that, that's great.
17:49 So, speaking of faster, can you talk about the performance comparisons?
17:53 I have a little example I'll tell you, but I'll let you go first.
17:57 So, as usual, performance comparisons are usually very hard to do and flawed.
18:04 Everybody, yes, absolutely.
18:05 Everybody's thing they care about is not exactly what you're measuring, and so it might be totally misleading.
18:10 But give it a shot.
18:12 One good estimate is if you don't have benchmarks, you don't care about performance.
18:17 Like, if you never wrote benchmarks for your applications, then chances are you don't actually care all that much.
18:24 And you shouldn't really...
18:27 That's the first step.
18:28 Like, make sure you know how fast your applications run.
18:32 Once you know that, you can measure it on different interpreters.
18:34 But as far as expectations go, PyPy tends to run heavy computations a lot faster.
18:41 Like, a lot is anything between 10 and 100 times faster, depending on the workload.
18:49 For stuff that's more...
18:50 And again, what is a typical Python program?
18:54 Typical Python program is probably Hello World.
18:56 How fast Python runs Hello World.
18:58 Roughly at the same speed as CPython, you won't notice.
19:01 But for a typical web application, the speed up, if you're not heavily relying on C extensions, would be around 2x.
19:09 So, 2x faster for a lot of people makes a lot of difference.
19:13 Absolutely.
19:14 It also depends on where are you waiting.
19:16 Like you said, you should profile it and figure this out.
19:18 If your Python web app is slow because 80% of the time you're waiting on the database, well, it doesn't really matter how fast your Python code is.
19:26 Your database is a problem.
19:27 Or something like this, right?
19:29 Exactly.
19:30 Exactly.
19:30 And like, the thing is like, so let's narrow it down to, say, web applications.
19:36 Like, okay, let me first talk about other stuff and then let's go to web applications.
19:40 Like, where people found Piper incredibly useful is things like high-frequency trading.
19:46 Like, not the very crazy high-frequency where you have to make decisions like multiple times per millisecond.
19:52 But like the sort of frequency where you want to make decisions within a few milliseconds.
19:58 And then those decisions are like tens of milliseconds.
20:02 Those decisions can, then you want to be able to modify your algorithms fast, which is a lot easier on Python than, say, on C++.
20:10 And you're running into less problems with how to shoot yourself in the foot and segfault all your trading.
20:16 So, that's when people tend to use Piper because like, in this sort of scenario, it would be like 10 times faster.
20:24 So, super low latency stuff where 10 milliseconds makes a huge difference to you.
20:28 Something like that.
20:29 Yeah.
20:29 Okay.
20:30 Another example is there's, for example, a project called MyHDL, which is the hardware emulation layer.
20:40 And these tend to emit sort of low-level Python code that just do computations to emulate hardware.
20:48 And then again, on Piper, it's like over 10 times faster.
20:51 So, those are the very good examples.
20:53 The very bad examples, as you said.
20:54 If your program, if your staff is waiting on the database, then you're out of luck.
21:00 Like, no matter how fast your interpreter responds.
21:02 But yeah.
21:05 On the typical web server load, even if there is such a thing, it would be around two times speed up.
21:11 Sometimes more, sometimes less.
21:13 Depending on the setup, really.
21:15 But as I said, you should really measure yourself.
21:18 The things where Python is quite better, if you spend most of the time in C extensions,
21:26 then it's either not helping or actually prevent you from doing so.
21:29 And the second time where it's not that great is when the program is short running.
21:36 So, because it's just-in-time compilation, it means that each time you run your program,
21:41 the interpreter has to look what's going on, pick things to compile to Assembler, compile them to Assembler,
21:49 and that all takes time.
21:50 Right.
21:50 There's a little more initial startup when that happens.
21:54 Yeah, the warm-up time is usually quite bad.
21:57 Well, I like to think that warm-up time of PyPy is quite bad.
22:01 And then I look at Java, when it's absolutely outrageous.
22:04 It's a relative statement.
22:07 It's a relative term.
22:08 Like, compared to CPython, PyPy time is really terrible.
22:11 And compared to Luach, it's, again, the warm-up time is terrible.
22:14 But compared to Java, it's not that bad.
22:17 So, yeah, it really depends on your setup.
22:20 And it's typically important for long-running applications.
22:23 Then again, this is a typical PyPy user.
22:26 When stuff like server-based applications where your programs run for a long time.
22:32 Right.
22:33 You start it up and it's going to serve a million requests an hour until it gets recycled or something, yeah?
22:38 Something like that.
22:40 I mean, these days, even JavaScript is long-running up.
22:44 Like, how long do you keep your Gmail open?
22:46 For usually, for longer than a few seconds.
22:49 Yeah, that's for sure.
22:51 So, let's talk a little bit about the internals.
22:55 Could you describe just a little bit of...
23:00 So, if I take a Python script and it's got some classes and some functions and they're calling each other and so on.
23:05 What does it look like in terms of what's happening when that code runs?
23:09 Okay.
23:11 So, I'll maybe start from, like, how PyPy is built and then get back to your question directly.
23:16 Yeah, great.
23:17 So, PyPy is two things.
23:19 And it has been very confusing because we've been calling them PyPy and PyPy.
23:24 And calling two things which are related but not identical the same name is absolutely terrible.
23:30 We'll probably fix that at some point.
23:32 But, like, PyPy is mostly two things.
23:35 So, one thing is a Python interpreter.
23:38 And the other thing is a part that I would call RPython, which is a language for writing interpreters.
23:44 It tends to be similar to Python in a sense that it's a restricted subset of Python.
23:51 But this is largely irrelevant for the architectural question.
23:54 So, you have an interpreter written in RPython that can be PyPy.
24:01 We have a whole variety.
24:03 There's Hippie, which is a PHP interpreter.
24:05 There's a bunch of Scheme interpreters.
24:08 And there's even a Prolog interpreter and a whole bunch of other interpreters written in RPython.
24:14 And then...
24:14 Is RPython a compiled language?
24:17 Yes.
24:18 And the other part is essentially the translation toolchain or a compiler for RPython.
24:25 So, it contains various things like garbage collector implementation for RPython,
24:31 the data types like strings, unicodes, and all the things that RPython supports.
24:36 It also contains a just-in-time compiler for RPython and for interpreters written in RPython,
24:43 which is one level in direction compared to what you usually do.
24:49 So, the just-in-time compiler would be sort of generated from your RPython interpreter and not implemented directly,
24:59 which is very, very important for us because Python, despite looking simple,
25:03 is actually an incredibly complicated language.
25:06 If you're trying to encode all the descriptor protocol or how actually functions and parameters are called,
25:11 chances are you'll make a mistake.
25:13 So, if you're implementing an interpreter and a just-in-time compiler, it's very, very hard to get all the details right.
25:19 So, we implement the Python semantics once in the Python interpreter, and then it gets either directly executed or compiled to assembly.
25:32 So, if you're coming back to your question, if you have a Python program,
25:37 first, what it does, it will compile to bytecode, and bytecode is quite high level.
25:42 There's a thing called this module, which you can just call this.this on any sort of Python object,
25:51 and it will display bytecode.
25:54 And the basic idea, which is what CPython does, and which is what PyPy does too at first,
26:00 is to take bytecodes one by one, look what's it, and then execute it.
26:06 Yeah.
26:08 And is that like what's in the PyCache folders and things like that?
26:11 Like those PYC files?
26:13 Yeah.
26:13 The PYC files are essentially a serialized version of Python bytecode.
26:17 Okay.
26:18 It's just a cache to store to not have to parse Python files each time you import a giant project.
26:25 Right.
26:25 Okay.
26:26 And so then CPython takes those instructions and executes them via an interpreter,
26:30 but that's not what happens on PyPy, right?
26:32 That's what happens on PyPy initially.
26:35 So, all your code will be like executed like CPython, except if you hit a magic number of like function calls
26:43 or loop iterations, I think it's 1037 for loop iterations, then you compile this particular loop,
26:53 in fact, this particular execution of a loop, into assembler code.
26:56 Then if you have a mix of interpreter code and assembler code, and if you,
27:04 the assembler code is a linear sequence of instructions that contains so-called guards.
27:11 So, the guards will be anything from if something in the Python source to is the type of this thing stays the same.
27:19 Then if you happen to fail those guards, then you, okay, I failed this guard,
27:25 I'm going to go and start compiling assembler again.
27:29 I mean, at first you jump back to the interpreter, but if you, again, hit a magic number,
27:34 you compile the assembler again from this guard.
27:36 And then you end up with like a tree of execution that resembles both your Python code
27:43 and the type structure that you're passing in a few other things that are automatically determined.
27:48 So, at the end of the day, you end up with a Python function or like multiple Python functions
27:54 that got compiled to assembler if you warm stuff for long enough.
27:57 Okay.
27:58 That's, that is super interesting.
27:59 I didn't expect that it would have this initial non-assembled assembler version.
28:05 That's, that's very cool.
28:06 What was, do you know what the thinking around that was?
28:08 Is it just better performance?
28:09 So, there's a variety of things.
28:12 Like, one thing is that if you try to, to compile everything like upfront,
28:17 it would take you forever.
28:19 But also you are, you can do some optimizations.
28:24 Like, a lot of optimizations done in PyPy are sort of optimistic.
28:28 Like, we're going to assume special things like sys.setTrace or sys.getFrame
28:35 just does not happen.
28:37 And until it doesn't happen, things can run nicely and smoothly.
28:41 But you're trying to figure out on the fly what's going on.
28:45 And then you compile pieces that you know about.
28:47 So, at the moment when you are compiling a Python loop or a function or something like that,
28:53 you tend to know more about the, the state of execution than, that is just in the source.
28:58 Like, you tend to know the types, the precise shape of objects.
29:02 Like, is this an object that's class X and has two attributes A and B?
29:07 Or is it an object of class X that has three attributes A, B, and C?
29:11 And those decisions can lead to better performance, essentially.
29:15 So, on your website, you say that this, that PyPy may be better in terms of memory usage as well.
29:22 How does that work?
29:23 It's a trade-off, right?
29:25 So, first of all, PyPy does consume memory memory for the compound assembler
29:32 and the associated bookkeeping data.
29:34 That depends on how much code you actually run.
29:38 But, the object representation of Python, of Python objects is more compact
29:43 than PyPy.
29:43 So, the actual amount of memory consumed by your heap tends to be smaller.
29:50 Like, all PyPy objects are as memory compact as see Python objects using
29:56 slots.
29:58 Right, okay.
29:58 So, it's the same optimization except it's transparent.
30:01 Then, the, like, list of only integers would not allocate the entire objects.
30:10 It would allocate only small integers.
30:12 Then, the, the objects are smaller themselves because we use a different garbage collection
30:18 strategy.
30:18 It's not ref counting.
30:20 it's a garbage collector.
30:21 Right, so, let's talk about the garbage collector just for a moment.
30:24 Is it a mark and sweep garbage collector?
30:27 This episode is brought to you by CodeShip.
30:43 CodeShip has launched organizations, create teams, set permissions for specific team members,
30:49 and improve collaboration in your continuous delivery workflow.
30:52 Maintain centralized control over your organization's projects and teams
30:56 with CodeShip's new organizations plan.
30:58 And, as Talk Python listeners, you can save 20% off any premium plan for the next three months.
31:03 Just use the code TALKPYTHON, all caps, no spaces.
31:07 Check them out at CodeShip.com and tell them thanks for supporting the show
31:11 on Twitter where they're at, CodeShip.
31:13 It's in, very convoluted variant of mark and sweep.
31:21 Yeah.
31:21 It has two generations of objects, young objects and old objects, and old objects
31:27 are mark and sweep, and young objects are pointer bump allocations.
31:31 So, the net effect is that if you are having a lot of small objects that get allocated
31:39 all the time and forgotten really quickly, allocation takes, like, on average,
31:43 around one CPU instruction.
31:45 It's, on average, one, because it takes, like, slightly more, but then you have
31:51 pipelining, so sometimes it takes slightly less.
31:53 Okay, do you guys do compaction and things like that as well?
31:57 No, but we do copy old objects from the young generation to the old generation.
32:04 Then we don't compact the old generation, but usually more compact than your normal setup
32:10 where you have lots of objects that are scattered all over the place because you only
32:14 have to deal with objects that survive minor collection.
32:17 Right, and that's the majority of objects that we interact with all die right away.
32:22 Vast majority.
32:22 Yeah, absolutely.
32:23 For the most part.
32:25 Okay, yeah, that's very cool.
32:27 One of the things that is not super easy in regular Python is parallelism
32:33 and asynchronous programming and so on.
32:35 And you guys have this thing called stackless mode.
32:39 What's the story with that?
32:40 It's the same thing as stackless Python.
32:44 It gives you an ability to have coroutines that can be swapped out without an explicit
32:50 yield keyword.
32:51 So it's not like Python 3 coroutines.
32:54 it's like normal coroutines when you can swap them randomly.
32:59 For example, GEvent uses I think GEvent uses stackless mode for swapping
33:05 the coroutines.
33:06 Okay, so you said that you can get better concurrency.
33:10 Can you kind of describe speak to that any or what are your thoughts there?
33:14 I personally don't use stackless all that much but the net effect is that you
33:20 you can write code like with Python 3 coroutines without the yield keyword.
33:27 So you just call function then you can swap the functions for other things.
33:31 It's a bit like implicit twisted where you don't get better concurrency than twisted
33:37 but you're not you don't need to write your programs in the style that twisted requires.
33:43 I was going to say it's just a little more automatic and you don't have to be so explicit
33:48 that you're doing threading.
33:49 Yeah, exactly.
33:51 Like the normal normal threads especially in Python where you have the global interpreter log
33:57 they don't scale all that well and like the solution is usually twisted but twisted requires
34:02 you to have all the libraries and everything written twisted aware which stackless
34:08 does not generally requires.
34:09 I don't have any particular feelings towards all of that to be honest.
34:15 Sure.
34:16 Does it also support Twisted running on PyPy?
34:18 Do you know?
34:19 Yeah, obviously.
34:20 Twisted is a Python program.
34:21 We had from the very early days we had good contact with twisted people and people who use twisted
34:30 tend to be from the same category as people who use PyPy.
34:32 People who have large running code bases that are boring but have problems
34:38 because they're actually huge.
34:39 I mean not huge in terms of code base but huge in terms of number of requests
34:44 they serve and stuff like this.
34:46 So they tend to be very, very focused on how to make the stuff work both reliably
34:54 and fast.
34:56 So for example like a typical answer to Python performance problems oh just rewrite
35:02 pieces in C.
35:03 Well that's all cool if you have like few small loops that you can
35:09 rewrite in C and have everything fast.
35:11 But like most web servers are not like this.
35:14 If you look at the profile it's just flat.
35:15 It's tons of dictionaries and things that are not easy to write in C.
35:20 And C introduces security problems like suddenly dealing in C with untrusted data
35:26 is not that much fun.
35:28 No.
35:28 So it's definitely not.
35:29 Or even reliability right?
35:31 Yeah.
35:32 So all those problems.
35:33 So Twisted people tend to write like Python better than C and they've been very supportive
35:40 of PyPy from the very first day.
35:43 So they generally PyPy is running Twisted and it's running Twisted quite fast
35:48 for quite a few years right now.
35:50 Yeah that's excellent.
35:51 It seems like if you have a problem that Twisted would solve you also probably
35:55 want to look into PyPy.
35:57 Exactly.
35:57 This is like the same category of problems that you're trying to solve.
36:02 Another interesting stuff about concurrency which I guess I'm slightly more excited
36:07 about is the software transactional memory that Armin Rigo is working on right
36:12 now.
36:12 So this is one of our fundraisers just like NumPy.
36:15 Yeah so this is one of your three sort of major going forward projects if you will.
36:20 Yeah those are the three publicly funded projects.
36:24 Right and if you go to PyPy.org right there on the right it says donate towards
36:28 STM and you guys have quite a bit of money towards this project and so it's excellent.
36:36 What is software transactional memory for the listeners?
36:38 There are two ideas.
36:40 First problem they're related but not identical.
36:44 First problem is that Python has the global interpreter log.
36:48 So global interpreter log essentially prevents you from running multiple threads
36:54 on multiple cores on one machine.
36:57 So if you write Python program and you write it multi threaded it will only
37:01 ever consume one CPU which is not great if you want to compute anything.
37:06 So that's one problem that STM is solving and I'm going to explain just now how
37:11 it's solving it.
37:11 But another problem is that it's trying to provide a much better model for writing
37:18 programs with threads.
37:19 If you start using threads the Python mutability model makes it so hard to write
37:25 correct programs.
37:26 you're essentially running into problems like suddenly okay but I have to think
37:31 who modified what in what order and consider all the possible combinations.
37:36 Make sure that every bit of code that's going to work with this segment of
37:41 data is taking the right locks and all that kind of stuff that gets really tricky
37:45 to ensure right?
37:47 yeah so essentially the model is where if you write program in C you write
37:54 the program it's all fine then you switch to threading and you get performance
37:59 immediately like your program if you write threads correctly it will run
38:05 four times faster on four cores or whatever but it will likely crash and it will
38:12 likely crash for the next couple of weeks months years whatever you throw
38:16 into it because you need to get 100% correctness back so the S-team works slightly
38:23 differently where you you essentially write programs in a mode where it looks like
38:30 you put a gigantic lock around everything that matters in your program so you
38:36 write one event loop and you know like okay this loop will consume blocks
38:42 or whatever consume some sort of data in an unordered queue and you can add to the
38:47 queue in an unordered way and then you put a giant lock over like the whole
38:52 processing if you write that sort of program with normal threads and normal
38:55 locks it will it will be correct but it won't run fast because everything
39:00 will be giant will be inside the giant locks to be more or less serial but all
39:05 the complexity in your code of doing parallelism anyway yeah so this so STM
39:12 stands for software transactional memory it means it works roughly like a
39:16 database where you run multiple transactions and then if you don't touch
39:23 the memory from two threads at the same time then it's all cool and if you
39:29 touch one of those gets aborted and reverted and you can only commit a transaction
39:34 if the memory access was right so if you think again about the model where
39:39 you have one gigantic log it means it will run in parallel optimistically
39:43 a few versions of the same code on different data and if they tend not to
39:49 conflict if they can be run serially in a sense like they modify some global
39:56 data but not in a conflicting manner then you'll get parallelism for free
40:04 but if they do conflict every now and again then one of the guys gets reverted
40:10 back to the start so the net effect is that it looks like you're running
40:14 stuff serially for the programmer and you get correctness for free if you
40:19 write it in a way that that's naive then you won't get performance because your
40:26 stuff will collide all the time but then you can use tools and look where it
40:30 collides and remove those contention points and you get more and more performance
40:34 which is almost the same goal but the difference is that if you have 100%
40:40 performance and 99% correctness your program is still incorrect and you can't run
40:45 it if you have 100% correctness and 99% performance you're mostly good to
40:50 go yeah would you rather be fast and wrong or slow and right it's sort of
40:55 that you know there's a really interesting classification of those types of
41:00 problems that you only see every very very rarely from the you know sort of
41:06 some kind of race condition or timing threading problem and I've heard people
41:10 describe those as Heisen bugs because because as you interact with a program
41:15 trying to see the problem you might not be able to observe it but if you're not
41:18 looking all of a sudden boom the timing realigns and it's a problem again
41:21 they're very frustrating so it's important to look at so that the usual answer
41:27 for those problems in Python is just use multiple processes and using multiple
41:32 processes works for a category of applications and web servers tend to be one
41:36 of those because they only ever share data that's either caches or database
41:42 usually that's another process anyway like Redis or it's in a database like
41:46 Mongo or SQL or something like that yeah so you don't care but like there's a
41:50 whole set of problems where this is not what you have you have data that's
41:56 mostly not contentious but you still have to share it and work on it you can't
42:01 afford to serialize and deserialize and pass between processes and yet you want
42:07 to have a correct result so this is what STM is trying to address a set of problems
42:14 that can be solved by just splitting stuff into processes right maybe something
42:19 very computational or scientific where it's iterative or something would be
42:23 way harder well essentially anything where you have data that mostly does not
42:29 conflict and you can do it in parallel but every now and again it's a big data
42:35 set that you work on and every now and again you tend to conflict like graph
42:41 algorithms are a great example and you have this large complicated data structure
42:44 in memory and most of the time you're walking different parts of graphs so you don't
42:49 care but every now and again you'll find contention on one graph because two
42:54 parts are doing stuff on the same node and then you're like that's wrong
42:59 and writing this sort of stuff using threads is really hard yeah so that
43:03 has a lot of promise do you know when it might start to show up as a thing
43:07 people can use is it there yet so it's already there to an extent you can
43:13 download the STM demo somewhere and the STM demo works it might not scale
43:20 how you want it it might not work how you want it but it should generally
43:23 work and scale so the current version only scales to like two or three cores
43:30 and given that it comes at a quite hefty cost of like 1.5 to two times slower
43:38 on each core it's not that useful so the next version will try to reduce the
43:43 overhead of single core and improve the scalability to more cores and then
43:47 we'll see how it goes it's going along quite well I would expect like I mean
43:52 there are consecutive prototypes that are usable to some extent like we managed to
43:58 get some performance improvements running on multiple cores but they have
44:02 20-30% range which is just not that exciting but on the other hand they were
44:08 mostly for free which is again something that you might what if I rewrite
44:16 no no the point is you don't have to rewrite it's a very simple change and then
44:20 you might get some performance benefit yeah that's fantastic the other one of the
44:25 other projects that you have on your donation list is a major thing you guys
44:29 are working on is Pi3k in PiPi what's that it's the Python 3 implementation
44:36 of PiPi so as I said before we have various interpreters in PiPi that are
44:44 all implemented in our Python and one of those interpreters is a Python 2
44:48 interpreter and one of those interpreters which is less complete is Python 3
44:53 interpreter that supports like 3.2 by now so we need money to push it forward
44:59 and help I guess too to push it forward to like 3.3 or 3.4 or even 3.5 to bring
45:08 it more up to speed one thing that we don't do in PiPi is we don't debate
45:13 the Python language choices and I think it serves us well so for example
45:18 I don't work much on the Python interpreter itself I work a lot on the R
45:22 Python side of things and most of the improvements help all of the interpreters
45:27 not just Python interpreter so I personally don't care if it's Python 2 or Python 3
45:34 the improvements are all the same to me right that's great then you also
45:38 have a section towards general progress and the last one is NumPy what are
45:43 you trying to accomplish with that sprint or whatever you call it so as I
45:49 said before the NumPy stuff is we want to reimplement the NumPy so the numeric
45:54 part the operation on arrays and we have a very exciting project for summer
46:01 of code that does vectorization so using SSE for NumPy and then we want to integrate
46:08 more of the have a way to call more of the whole ecosystem of numeric Python
46:16 so scipy mat world lib all this stuff that's outside of the scope so we want
46:21 to have the core of NumPy implemented in PyPy because those things are too
46:25 low level to just call external library and then we want to have a way or
46:32 multiple ways depending on the setup to call all the other ecosystem and
46:37 this is essentially what those goals are here those are three ambitious and
46:44 very cool goals very nice well they've been around for a couple years I think
46:49 so we are working towards them and we have people working right now on all
46:54 three proposals as far as I can tell yeah that's great so one thing that
46:59 is related to PyPy that you've done individually is the JIT viewer can you
47:05 talk about that briefly so JIT viewer is a bit of an internal tool for visualizing
47:13 assembler and the intermediate representation of your Python program so it's
47:19 very useful for if you're really interested how PyPy compiles your program
47:23 you can look into that so one related project that I've been working on recently
47:28 quite a lot is called VMProf and VMProf is a low overhead statistical profiler
47:36 for Python or for VMs in general but we're going to start with CPython and
47:40 PyPy so those are tools that help developers find their bottlenecks in the
47:46 code and find how to improve performance usually because if you can understand
47:51 it you can usually improve it yeah that's excellent yeah we've been talking
47:56 a lot about how PyPy makes stuff faster but before you just say well we're
48:01 switching to some new interpreter maybe it makes sense to think about your
48:04 algorithms and where they're slow and whether or not that switch would even
48:07 help it it really depends on the situation sometimes you switch without thinking
48:12 about it and sometimes it doesn't make sense and you have to think about
48:15 it first it really depends on your program and what are you trying to achieve
48:19 and sometimes you want to switch look improve sometimes you want to do both
48:23 yeah well at minimum you probably want to measure and profile your app and
48:28 try it on you definitely want to measure you definitely want to know how
48:36 fast your application is running before attempting anything it felt a little
48:41 faster let's do it exactly you're laughing but we've seen people like that
48:47 like my application runs faster on my local machine but not on the server
48:52 okay how did you benchmark oh I looked at the loading time Chrome like developer
48:58 tools that's not good enough usually that's like yes it might be slower because
49:06 your network is slower I don't know what your setup is maybe the ping time
49:10 is 100 milliseconds the request time is 10 milliseconds so geez it's really
49:14 slow on the server right awesome all right Manja this is probably a good
49:20 place to wrap up the show this has been such an interesting conversation
49:22 I'm really excited about what you are doing and you know I hope you keep
49:26 going I want to make sure that people know that the source code is on bitbucket
49:30 they can go to bitbucket.org slash pipi that's the main repo the main way to
49:36 contact us is usually through either mailing list or irc we hang out on irc
49:41 a lot it's hash pipi on free node and we're usually quite approachable when you
49:46 come with problems and one interesting thing is if you find your program
49:51 running slower on their pipi than c python it's usually considered a bug
49:56 unless you're using a lot of c extensions right so if people run into that
50:00 maybe they should communicate with you guys and they can definitely file a
50:04 bug and complain excellent two quick questions I typically ask people at
50:09 the end of the show what what's your favorite editor how do you write code
50:12 during the day I have heavily hacked emux actually that does all kinds of
50:18 weird stuff and I'm way more proficient with elisp than I would ever want
50:23 to be actually a skill you didn't really want to earn but you you've done
50:28 it anyway huh something like that yeah and then also what's a notable or
50:34 interesting pypi package that you want to tell people about that's a tough
50:40 one for me because I don't actually write all that much Python code that's
50:44 using libraries you can't import too much into the like the core core bits
50:49 right right but definitely and I mean it is self promotion but definitely
50:54 cffi is something that I would recommend people to look at as a way to call
50:58 c because this is something very low that has been very successful as a simple
51:04 simple simple way to call c that's cool and if I was writing some program
51:08 in Python and I had some computational bits I'd written in c I could wire
51:14 them together with cffi you'll be surprised how few people actually do that
51:19 most of the time I have this Python program and I have this obscure c library
51:23 that accesses this weird device that nobody heard about and I need to call
51:28 it somehow and that's why you call c the computational bits it's actually
51:33 quite rare but that would be an option too yeah sure sure okay awesome and
51:39 then finally just you said that you do some consulting do you want to maybe
51:43 talk a little bit about what you do so if people want to contact you or anything
51:47 like that so the website is barocksoftware.com and essentially what we do
51:52 is we make your Python programs run faster like the same thing as we do in
51:57 open source except on the commercial side so typically if your open source
52:01 software is running too slow just come to IRC and if your commercial software
52:05 is running too slow we can definitely do a contract with you to make it run
52:10 faster yeah that's awesome yeah so I'm sure people who are having trouble
52:13 might be interested in checking that out so great Machia this has been super
52:18 fun I've learned a lot thanks thank you Michael have a good day yeah you too
52:23 this has been another episode of talk Python to me today's guest was Machia
52:28 Falkowski and this episode has been sponsored by Hired and Codeship thank
52:33 you guys for supporting the show Hired wants to help you find your next big
52:37 thing visit Hired.com slash Talk Python to me to get five or more offers
52:42 with salary and equity presented right up front and a special listener signing
52:47 bonus of $4,000 Codeship wants you to always keep shipping check them out
52:53 at Codeship.com and thank them on Twitter via at Codeship don't forget the
52:57 discount code for listeners it's easy Talk Python all caps no spaces you can
53:03 find the links from the show at talkpython.fm episodes show 21 and be sure to
53:10 subscribe to the show open your favorite podcatcher and search for Python
53:13 we should be right at the top you can also find the iTunes and direct RSS
53:17 feeds in the footer of the website our theme music is developers developers
53:22 developers by Corey Smith who goes by Smix you can hear the entire song on
53:27 talk python.fm this is your host Michael Kennedy thanks for listening Smix
53:33 take us out of here dating with my voice there's no norm that I can feel
53:38 within haven't been sleeping I've been using lots of rest I'll pass the mic
53:42 back to who rocked it best I'm first developers, developers, developers, developers, developers.
53:52 Developers, developers, developers, developers, developers.