Menu
Sign In Search Podcasts Charts People & Topics Add Podcast API Blog Pricing

Chris Lattner

๐Ÿ‘ค Speaker
See mentions of this person in podcasts
2524 total appearances

Appearances Over Time

Podcast Appearances

Lex Fridman Podcast
#381 โ€“ Chris Lattner: Future of Programming and AI

So PyPy is a great example of a camp that is trying to be compatible with Python.

Lex Fridman Podcast
#381 โ€“ Chris Lattner: Future of Programming and AI

Even there, not really.

Lex Fridman Podcast
#381 โ€“ Chris Lattner: Future of Programming and AI

It doesn't work with all the C packages and stuff like that, but they're trying to be compatible with Python.

Lex Fridman Podcast
#381 โ€“ Chris Lattner: Future of Programming and AI

There's also another category of these things where they're saying, well, Python is too complicated, and I'm going to cheat on the edges, and integers in Python can be an arbitrary size integer.

Lex Fridman Podcast
#381 โ€“ Chris Lattner: Future of Programming and AI

If you care about it fitting in a going fast in a register in a computer, that's really annoying, right?

Lex Fridman Podcast
#381 โ€“ Chris Lattner: Future of Programming and AI

And so you can choose to pass on that, right?

Lex Fridman Podcast
#381 โ€“ Chris Lattner: Future of Programming and AI

You can say, well, people don't really use big integers that often.

Lex Fridman Podcast
#381 โ€“ Chris Lattner: Future of Programming and AI

Therefore, I'm going to just not do it and it will be fine.

Lex Fridman Podcast
#381 โ€“ Chris Lattner: Future of Programming and AI

Not a Python superset.

Lex Fridman Podcast
#381 โ€“ Chris Lattner: Future of Programming and AI

Or you can do the hard thing and say, okay, this is Python.

Lex Fridman Podcast
#381 โ€“ Chris Lattner: Future of Programming and AI

You can't be a superset of Python without...

Lex Fridman Podcast
#381 โ€“ Chris Lattner: Future of Programming and AI

being a superset of Python.

Lex Fridman Podcast
#381 โ€“ Chris Lattner: Future of Programming and AI

And that's a really hard technical problem, but it's, in my opinion, worth it, right?

Lex Fridman Podcast
#381 โ€“ Chris Lattner: Future of Programming and AI

And it's worth it because it's not about any one package.

Lex Fridman Podcast
#381 โ€“ Chris Lattner: Future of Programming and AI

It's about this ecosystem.

Lex Fridman Podcast
#381 โ€“ Chris Lattner: Future of Programming and AI

It's about what Python means for the world.

Lex Fridman Podcast
#381 โ€“ Chris Lattner: Future of Programming and AI

And it also means we don't want to repeat the Python 2 to Python 3 transition.

Lex Fridman Podcast
#381 โ€“ Chris Lattner: Future of Programming and AI

Like we want people to be able to adopt this stuff quickly.

Lex Fridman Podcast
#381 โ€“ Chris Lattner: Future of Programming and AI

And so by doing that work, we can help lift people.

Lex Fridman Podcast
#381 โ€“ Chris Lattner: Future of Programming and AI

Well, it paints you into corners.