Cython makes Python INSANELY FAST

  Рет қаралды 35,121

Carberra

Carberra

Күн бұрын

Python has a bit of a reputation for being slow, but with just a little bit of effort, it can approach the sort of speeds you could expect from C. Wowsers.
-
If you enjoy my content, consider supporting me on Patreon (or hit the JOIN button below to become a member)!
patreon.carber...
If you need help with anything, feel free to join the Discord server:
discord.carber...
I get a lot of people asking, so here's my Visual Studio Code setup!
• My Visual Studio Code ...
-
If you have any questions, don't hesitate to ask in the comments! I'll try and answer as soon as I can, providing someone else hasn't already done so.
#python #coding #howto

Пікірлер: 54
@Carberra
@Carberra 2 жыл бұрын
Thanks to Mitko for pointing this out - due to an oversight in my implementation, the benchmarks for the factorial function are actually incorrect. This doesn't degrade the educational value with regard to the syntax, which is all fine, but I thought I'd just mention it. Moral of the story: be careful around big numbers!
@MitkoNikov
@MitkoNikov 2 жыл бұрын
Wait! You don't check if the answers are the same! I suspect if the code is converted to C/C++ without using Python's int object, it overflows and that's why it's way faster. It should be way faster eitherway, but does it properly use the python int object or just uses the primitive 4 bytes integer in C/C++?
@Carberra
@Carberra 2 жыл бұрын
You are...right. Fuck, how did I not notice that? Thankfully I don't think it kills the educational value with regard to the syntax, but I will update the thumbnail to reflect the speedup from the sorting, which I've confirmed as legit.
@shner6742
@shner6742 Жыл бұрын
Yo this is awesome bro, I run this code and it was actually 1867.571 times faster using Python 3.10.7 and C++ 14.0 (for the factorial() example)
@divingradish
@divingradish 2 жыл бұрын
"so" in "*.so" files stands for Shared Object.
@Carberra
@Carberra 2 жыл бұрын
I see -- I had a hunch but wasn't 100% sure. Thanks for confirming (:
@tristotech
@tristotech 10 ай бұрын
Step 1: ask ChatGPT generate simple python program for hard task Step 2: Cython generate C code Step 3: Ask ChatGPT to simplify each Cython code files Step 4: Go back to step 1
@hammerheadcorvette4
@hammerheadcorvette4 6 ай бұрын
ChatGPT is not the end all be all. It's cool sure, it's not infallible.
@RuslanKovtun
@RuslanKovtun Жыл бұрын
You can't get 1000! fit in int64. Python's `int` contains all the digits, while C's `int` overflows silently.
@birdbeakbeardneck3617
@birdbeakbeardneck3617 Жыл бұрын
I thought all the cython stuff in the .so file makes it so the int allocate more space
@AlexeiFarWest
@AlexeiFarWest 11 ай бұрын
Factorial 1000 will overflow your int. C doesn't care about the overflow, python does.
@traversis
@traversis Жыл бұрын
Excellent video! New to Cython, but when I tried this without importing the cpython array it worked with similar speedups. Maybe they changed something in the last 6 months?
@Carberra
@Carberra Жыл бұрын
Entirely possible. I haven't really gone back to this since the video so I couldn't tell you. It's possible the speed was roughly the same anyways.
@colly6022
@colly6022 Жыл бұрын
i'd assume the .so file is the same as every other .so file: a shared object. basically, a dynamically linked library.
@richardbennett4365
@richardbennett4365 5 ай бұрын
😮😮😮 Oh, no. The narrator said, "can be RAN." NO. CAN BE RUN. The word be is right there, so the past participle form must be used of the verb to run, not the past tense form of run. Run, ran, run. It's not run, ran, ran. That woukd be incorrect.
@johnlimusicofficial220
@johnlimusicofficial220 3 ай бұрын
Hell yeah!! Grammar Nazi, adore your
@abschmit
@abschmit 11 ай бұрын
100,000! doesn’t blow up the max int value for C? That seems suspicious. Might want to verify that the outputs are the same.
@richardbennett4365
@richardbennett4365 5 ай бұрын
Use deques (double-ended queues) instaed of lists in python if one wants fast execution times. It's why they are a part of python.
@Carberra
@Carberra 5 ай бұрын
I recently made a video talking about this, if you're interested.
@IARRCSim
@IARRCSim 4 ай бұрын
I wonder if PyPy could use some of its thorough data type analysis of Python code to convert Python to Cython. PyPy does JIT compilation but I wonder if mixing PyPy with Cython tools could lead to better performance.
@grimonce
@grimonce Жыл бұрын
so, is a shared object, something like *.dll in Windows platforms...
@richardbennett4365
@richardbennett4365 5 ай бұрын
Use numba in oython. Vastly simpler, and IT DOES GET ONE TO THE SPEEDS OF C. Also, there's pypy3 and codon, a language tgat uses python syntax, but is compiled, so wicked fast. 😮
@Carberra
@Carberra 5 ай бұрын
I've made videos on both Numba and PyPy, if you're interested.
@PeterRichardsandYoureNot
@PeterRichardsandYoureNot 5 ай бұрын
So confused. In the second example. Why did you have to make a separate cpdef list function ? I don’t see how it is even referenced from the first routine? I thought the whole idea was just to Cython existing code. This is very odd as it looks like you have to add a bunch of anscillary code to make it work and how would you even know what to put? My brain hurts now.
@williammcenaney1331
@williammcenaney1331 6 ай бұрын
You might write some Common Lisp params to benchmark them against Python programs solving the same problem. Common Lisp types dynamically. But some programmers wrote operating systems in it to run them on computers designed to run Lisp programs. Common Lisp lets you speed up your Lisp by statically typing some variables.
@user-wr4yl7tx3w
@user-wr4yl7tx3w 2 жыл бұрын
Can you call existing c math functions like matrix multiplication?
@Carberra
@Carberra 2 жыл бұрын
Yep. The documentation shows how, but I've never really tried it.
@ripsirwin1
@ripsirwin1 10 ай бұрын
Can you call numpy functions from within a cython kernel?
@rizzwan-42069
@rizzwan-42069 Ай бұрын
Based on vids that i watched numpy doesn't work with cython. So maybe look into numba.
@pietraderdetective8953
@pietraderdetective8953 11 ай бұрын
Great video! More videos on Cython please! In the video you mentioned the pure python mode didn't give the level of speedup of full Cython syntax...I experienced the same. Is this behaviour to be expected? I would rather write full Cython syntax if that's the case.
@Carberra
@Carberra 11 ай бұрын
Thank you! I believe so, as using Pure Python Mode requires the use of cpdef where cdef could be used in pure Cython. That's my understanding of it anyways, if I'm honest I haven't really done much with Cython since making this video!
@dipeshsamrawat7957
@dipeshsamrawat7957 5 ай бұрын
Could you please make a series of Cython? It's really amazing. 💯 Thanksgiving.
@Carberra
@Carberra 5 ай бұрын
If only I knew enough about it to say I was confident making a series on it 😅 I do keep meaning to go back to it and learn it more, just finding the time to do so atm is tough.
@dipeshsamrawat7957
@dipeshsamrawat7957 5 ай бұрын
@@Carberra I can understand your hard work. Please proceed with the action in the future if feasible. Thank you.
@ritikranjan7192
@ritikranjan7192 2 жыл бұрын
naise
@2sourcerer
@2sourcerer Жыл бұрын
Javascript also has to check types. Why is it faster?
@furkanesen
@furkanesen 2 жыл бұрын
Thx you.
@Carberra
@Carberra 2 жыл бұрын
You're welcome (:
@xanderplayz3446
@xanderplayz3446 2 ай бұрын
Just use Taichi.
@jfk1337
@jfk1337 2 жыл бұрын
how can cython modules be pip installed?
@Carberra
@Carberra 2 жыл бұрын
Same as any other module.
@jfk1337
@jfk1337 2 жыл бұрын
@@Carberra And pip automatically builds the .so?
@Carberra
@Carberra 2 жыл бұрын
Cython builds the .so files. You then include the .so files in your distributed package, and pip will treat it like any other file.
@desertfish74
@desertfish74 Жыл бұрын
@@Carberra and this makes your code no longer portable
@asianman1329
@asianman1329 2 жыл бұрын
Could you do a video on mypyc?
@Carberra
@Carberra 2 жыл бұрын
I certainly can! Planning on doing a video on that for next week (:
@asianman1329
@asianman1329 2 жыл бұрын
@@Carberra sweet!
@JOHNSMITH-ve3rq
@JOHNSMITH-ve3rq Жыл бұрын
Bruh just paste the python code into gpt and ask it to turn it into pure c. Problem solved m
@hammerheadcorvette4
@hammerheadcorvette4 6 ай бұрын
Learn to code. You can't rely on ChatGPT too much. Gemini is even worse.
@richardbennett4365
@richardbennett4365 5 ай бұрын
Its wuick, because it's compiled into machine code. Duh.
@cachazurdos
@cachazurdos 2 жыл бұрын
Spanish pliss
@rolfjohansen5376
@rolfjohansen5376 Жыл бұрын
how are classes with user functions represented in C?
@Apuryo
@Apuryo 7 ай бұрын
no classes in c. use c++
Compiled Python is FAST
12:57
Doug Mercer
Рет қаралды 111 М.
Make Python code 1000x Faster with Numba
20:33
Jack of Some
Рет қаралды 444 М.
哈莉奎因怎么变骷髅了#小丑 #shorts
00:19
好人小丑
Рет қаралды 52 МЛН
Electric Flying Bird with Hanging Wire Automatic for Ceiling Parrot
00:15
Python 3.12 Generic Types Explained
18:27
ArjanCodes
Рет қаралды 61 М.
5 Useful Python Decorators (ft. Carberra)
14:34
Indently
Рет қаралды 101 М.
python 3.13 release highlights
49:56
anthonywritescode
Рет қаралды 17 М.
Modern Python logging
21:32
mCoding
Рет қаралды 188 М.
Python 3.13's new REPL is AMAZING
10:21
Carberra
Рет қаралды 54 М.
Unlocking your CPU cores in Python (multiprocessing)
12:16
mCoding
Рет қаралды 304 М.
15 Python Libraries You Should Know About
14:54
ArjanCodes
Рет қаралды 390 М.
Python 3.13's new JIT and no-GIL modes
6:54
InfoWorld
Рет қаралды 4 М.
Speed Up Your Code With Cython
16:37
NeuralNine
Рет қаралды 117 М.