Тёмный

Python vs C++ Speed Comparison 

The Builder
Подписаться 18 тыс.
Просмотров 1,8 млн
50% 1

Lets compare the performance of c++ vs python counting to 1 Billion...Why is python so slow?

Наука

Опубликовано:

 

27 апр 2022

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 3,1 тыс.   
@ProgThoughts
@ProgThoughts Год назад
You can highly optimize the Python code by setting n = 1 billion before the loop begins.
@Nohomosapien
@Nohomosapien Год назад
Yeah and also the c++ one. But maybe he did that for a reason
@user-gw4jp3xg3n
@user-gw4jp3xg3n Год назад
@@Nohomosapien bro really dodged the joke.
@Nohomosapien
@Nohomosapien Год назад
@@user-gw4jp3xg3n Oh yeah, can you make me understand the "joke"?
@blubaylon
@blubaylon Год назад
@@Nohomosapien the joke was that the whole point was to speed test it, not to actually have "1000000000" in the console. So it makes no sense to write n = 1 billion lol
@petrurk6835
@petrurk6835 Год назад
@@Nohomosapien are you that dumb bro
@1zui
@1zui Год назад
I am really surprised that Python was only about 50 times slower.
@TheBuilder
@TheBuilder Год назад
I didn't enable any optimizations in the compiler
@ujin981
@ujin981 Год назад
c=2.432; p=112.447; p/c >>> 46.23643092105264
@douglas5097
@douglas5097 Год назад
lol
@user-tq9bu6ki2h
@user-tq9bu6ki2h Год назад
@@TheBuilder the only avalible optimisation is just to skip iterations and add billion at once. Compiling with optimisation flag will change nothing or will make the test meaningless, I think.
@TheBuilder
@TheBuilder Год назад
there are so many that the compiler does a better job optimizing the code. with python its not an option but any language can be equally fast
@filipburcevski9566
@filipburcevski9566 Год назад
I once tried counting to 1 Billion in my head. It took me a few centuries. I am glad I finally finished with that.
@TheBuilder
@TheBuilder Год назад
same tbh
@Clayne151
@Clayne151 3 месяца назад
Me too, but I optimized the loop und just thought of 1 billion.
@MrMeaty6
@MrMeaty6 Месяц назад
bro how slow where u counting`??? 1 bil seconds is 31 years
@mik8352
@mik8352 Месяц назад
@@MrMeaty6 Well, @filipburcevski9566 is right because it's going to take you more than one second to name each number... So yeah, it's going to take a few centuries.
@marjensendk
@marjensendk Месяц назад
⁠try saying 555.555.555 in one second :)
@estrogeneral-intelligence
@estrogeneral-intelligence 5 месяцев назад
Fun fact: the -O2 flag on the gcc compiler will most likely optimize the C++ program to the point that the result is immediate…because it generates machine code that just puts the number 1,000,000,000 directly into the CPU register rather than actually counting anything. At least this is what happened when I tried it with plain C.
@bspringer
@bspringer 5 месяцев назад
Just make the variable volatile then
@kylecrane4376
@kylecrane4376 4 месяца назад
My first thought as well. The compiler will see that absolutely nothing is done with that value of (n) and simply remove the looping
@wumi2419
@wumi2419 4 месяца назад
Yeah, I was surprised when it did't happen.
@jingato
@jingato 4 месяца назад
set it from user input with cin
@marc_frank
@marc_frank 4 месяца назад
would that still happen if you printed every number to the console?
@lloyd26
@lloyd26 Год назад
You see, Python is actually good since it gives you time to get a glass of water, do something, play a game, graduate and get a diploma, get a job, witness the year 3000, all while the compiler is doing its thing.
@budgethvick225
@budgethvick225 Год назад
Isnt python interpreted?
@lloyd26
@lloyd26 Год назад
@@budgethvick225 It is.
@nvcbl
@nvcbl Год назад
@@budgethvick225 it gets compiled then interpreted
@sks2227
@sks2227 Год назад
@@nvcbl tru
@narrator589
@narrator589 Год назад
Python is not a compiler genius
@ethannelson8656
@ethannelson8656 Год назад
I told one of my professors that python was probably the best language to learn about parallelism and concurrency. He looked like I just admitted to support dog fighting. I then told him that python was so slow and inefficient, you would be able to visibly see the time difference from running on multiple threads. He laughed.
@croma2068
@croma2068 Год назад
Every time I stand up for Python people look at me like I just quoted Hitler
@ethannelson8656
@ethannelson8656 Год назад
@@croma2068 It does have some niche uses. And I honestly believe it should be taught to children instead of cursive. That being said, it is pretty slow. And when its not slow, its because its using some other language.
@TheBuilder
@TheBuilder Год назад
there are issues with the design of the language but the speed is fine for what i use it for
@noornasri5753
@noornasri5753 Год назад
Python is honestly the best. Sure if you're working on a large product or in a competitive setting, you'll need Cpp, Java, or sometimes C. But languages are just syntax, after a while using a new language is just deciding on the best language for the task then a few google searches. Python has so many uses, not just for learning. It's very heavy in ml, has many useful libraries (graphing, numpy), and can do straight up magic compared to other languages. Whenever I want to automate or check something, I just open idle. Edit: people replying about the "magic" just being simple pseudocode, yes that's exactly right lol. In just a few seconds I can reformat data with nested dict/list comprehensions into a structure that would take a dozen lines in other languages. I know lots of the stuff are written in C/Cpp anyways, that's like saying go use assembly because everything ends up being like that anyways. My whole point is that python is extremely useful, obviously there's a time and place.
@Metruzanca
@Metruzanca Год назад
@@noornasri5753 "straight up magic" aka it can do what other languages do in slightly shorter syntax but it by no means has an advantage over other languages library wise. The only reasons python is so heavily used are: 1. its installed by default on all major linux distros, so its a prime choice for automation without further setup on fresh boxes. 2. Due to its simple syntax, its been picked up by data scientists to use for ML, but mind you ALL the heavy lifting is done in C++ so you could easily take say javascript which is also very easy to use (and has equivalent packages for everything) but is also much faster (using this shitty benchmark, written in node I get performance thats just a few ms slowler than c++) Python is not the best, never will be. Its just a very conveniently placed language. Want a language that actually does magic that no other language can? Learn rust.
@jesse2535
@jesse2535 7 месяцев назад
This is a great showcase of how much python has improved over the years, I mean this would probably not finish a few years ago.
@jasonscala5834
@jasonscala5834 4 месяца назад
😂😂😂😂😂😂😂😂
@ronald3836
@ronald3836 3 месяца назад
So a few years ago the fastest way to run this program was to first wait a few years.
@chadmwest
@chadmwest 2 месяца назад
Talk about looking on the bright side...
@cheatoffchannel6320
@cheatoffchannel6320 Месяц назад
​@@ronald3836 😂😂😂
@cerulity32k
@cerulity32k 6 месяцев назад
Tip: You can use underscores in Python to separate numbers. Example: 1_000_000_000
@Injinct
@Injinct 4 месяца назад
thanks
@Zorcky-2C
@Zorcky-2C 4 месяца назад
Wtf is notation!? That is so ugly
@living-in-ohio
@living-in-ohio 3 месяца назад
Aint spaces just better
@RedHair651
@RedHair651 3 месяца назад
It won't work ​@@living-in-ohio
@ieatthighs
@ieatthighs 3 месяца назад
​@@living-in-ohioaren't*
@adrianprayoga335
@adrianprayoga335 Год назад
the semicolon in python is just perfect as someone who write in C++
@TheBuilder
@TheBuilder Год назад
Muscle memory 💪
@listafe4938
@listafe4938 Год назад
Also parentheses in the condition
@bobbyfeet2240
@bobbyfeet2240 Год назад
I cut my teeth on C and only came to Python for work purposes target recently. I'm often told in coffee reviews that I'm getting "paren happy" in my conditionals and a few other places. Not so much an issue with semicolons, weirdly.
@usernamerequired788
@usernamerequired788 Год назад
@@bobbyfeet2240 yeah. when I do python I’m like well why shouldn’t I use parentheses if it still works after I put them in
@AWriterWandering
@AWriterWandering Год назад
Funny thing is you can write semicolons in Python if you really want to. It basically just ignores them.
@LD-dt1sk
@LD-dt1sk Год назад
You might think that the major time difference was because he used different coding languages, but python would’ve been way faster if he just removed a few zeros.
@Superdeeep
@Superdeeep Год назад
eaxtly and it would have been even more long for c++ if u added more zeroes
@weetabixharry
@weetabixharry Год назад
These are the facts that they don't want you to know.
@jpsytaccount
@jpsytaccount Год назад
My question is, why not just set N = 999,999,999? Wouldn’t that speed things up?
@Superdeeep
@Superdeeep Год назад
@@jpsytaccount what if and this is really genius. He puts it to 999,999,998
@ohneko6193
@ohneko6193 Год назад
How about we just remove the “1” and it’ll be infinitely faster
@mikuch_ws5251
@mikuch_ws5251 4 месяца назад
I had never delved into programming before, but this seemed so straightforward that I couldn't resist giving it a try. Using VS Code, I successfully executed it! Thank you; it was an enjoyable experience!
@TheBuilder
@TheBuilder 4 месяца назад
Glad you enjoyed it
@mkapper9800
@mkapper9800 23 дня назад
AI bot 😅
@oes2546
@oes2546 Год назад
We're studying FEM/FEA by implementing it in Python code atm. And while it sits there forever using 26GB RAM and 96% CPU I think to myself, how fast would it be if written in C++? (Maybe it wouldn't be that bad of a difference since Numpy is written in C though. Idk really...) However, I wouldn't stand a chance to be able to implement the ideas/concepts we are using it for in such a short time if it was written in C++... It would at least double if not triple the time spent on the project is my guess 😅 Off course such an application would be implemented in C++ for an actual program. But each tool has its place. For us it is having an easy language, in order to learn FEA by implementing it in code, the coding part being secondary to the concepts we're coding at least within the course we're taking. That's where python shines I guess. It minimizes "barrier" between the scientific/engineering concept and the code implentation, and it's a great language for just that reason. Different tools for different purposes.
@MajinSaha
@MajinSaha Год назад
If "the coding part is secondary to concepts", then MATLAB/Octave beat Python in that regard. Yet it's Python that gets all the f*ing praise smh.
@mujtabaalam5907
@mujtabaalam5907 6 месяцев назад
​@@MajinSahaMathematica is better
@piotrc966
@piotrc966 4 месяца назад
"the coding part being secondary to the concepts" always code is the second. It doesn't matter what you're doing whether it's a store or business rules in DDD or a game. In our company, we model the business in DDD using C#. (python is too slow and has poor objectivity - only by convention).
@Salzui
@Salzui Месяц назад
Did you consider using PyPy if applicable?
@eeshandev5081
@eeshandev5081 15 дней назад
C++ and Fortran are best if you're solving CFD or FEA problems because as far as I know, C++ and Fortran are fastest when handling multidimensional array. OpenFOAM has its entire library written in C++ and is a great open source CFD solver.
@user-vi5vn1gm6p
@user-vi5vn1gm6p Год назад
I studied C++ and C# in university, but before that I was learning python (through online courses) for exam. Now it is funny to remember how teacher said that if we won’t optimise our code, it will calculate for longer than the exam lasts
@herseem
@herseem Год назад
When I was at university (ok, it was Thames Poly. It only became a university when I left), if you wanted to add a gigabyte of memory to your computer you'd first have to apply for planning permission to build an extension. Now, 32GB comes in those handly blister packs sometimes near the till for 'impulse purchases'.
@rickintexas1584
@rickintexas1584 Год назад
@@herseem I know the feeling. I wrote my first programs in 1978 in high school. I wrote my first professional programs in Fortran in 1984 on a VAX computer shared by about 20 people. It only had about 256 MB of RAM to support all the users.
@AlexRodriguez-gb9ez
@AlexRodriguez-gb9ez Год назад
@Game Plays 1230 Avoid dynamic features in inner loops, cache, use aggregate functions like the array functions in numpy since they are written in C and use vector instructions
@ilsignoredellaluce2234
@ilsignoredellaluce2234 6 месяцев назад
This is so true. I had to rewrite an entire program during an exam because the way i wrote It the first time was so slow that i couldn't reiterate it the number of times needed before running out of time
@user-rb9qm5wr2l
@user-rb9qm5wr2l 6 месяцев назад
Just had to make the thumbsup an even 1000.
@richardhoyle8115
@richardhoyle8115 Год назад
Hey give Python a break! I bet you can't count to a billion that quickly!
@TheBuilder
@TheBuilder Год назад
python does in 2minutes what it would take the average person a life time to do
@dekippiesip
@dekippiesip Год назад
@@TheBuilder about 30 years if 1 second stands for 1 number.
@technolus5742
@technolus5742 Год назад
@@dekippiesip and don't forget numbers get harder and longer to count as you go
@ProgThoughts
@ProgThoughts Год назад
@@technolus5742 Something else gets harder and longer
@GamingFrazix
@GamingFrazix Год назад
@@ProgThoughts yea- but he probably dosent have that so leave him alone lmao
@tigrankhachatryan6119
@tigrankhachatryan6119 Год назад
I'm actually planning to work on a Python-like compiled programming language soon. This video remotivated me. Thank you
@TheBuilder
@TheBuilder Год назад
Golang or building your own?
@tigrankhachatryan6119
@tigrankhachatryan6119 Год назад
@@TheBuilder My own, though I'm going to use LLVM as a backend because I don't want to lose my sanity. It's gonna support both high-level and low-level features. Also, it's gonna be gradually typed. I can tell you more about it if you want
@TheBuilder
@TheBuilder Год назад
It's not something I'm familiar with. but if you want to share more you can contact me through email or join the discord
@RedHair651
@RedHair651 3 месяца назад
Nim?
@tigrankhachatryan6119
@tigrankhachatryan6119 3 месяца назад
@@RedHair651 Nim's not that Pythonic even though it's somewhat more humane than the average language
@jormaig
@jormaig Год назад
You can get even faster c++ code if you enable optimizations with the -O2 flag. Although it's possible that the compiler optimizes the loop and removes it 😅
@TheBuilder
@TheBuilder Год назад
that would be unfair since Python still dutifully does all those additions
@jormaig
@jormaig Год назад
@@TheBuilder True although this also highlights the power of compiled languages that can optimise away unnecessary computation
@rb1471
@rb1471 Год назад
@@jormaig In python we call it optimizing away the software engineer
@alexanderd.7818
@alexanderd.7818 Год назад
There are ways to ensure that loop is not removed. #include #include #include uint32_t n; int main() { clock_t begin = clock(); volatile int deopt; for (n = 0; n != 1000000000; ++n) { (void) deopt; } clock_t end = clock(); double spent = (double)(end - begin) / CLOCKS_PER_SEC; printf("%f ", spent); } 0.350250 with -O3, 0.98 with -O0.
@alexanderd.7818
@alexanderd.7818 Год назад
@@MTQvODg Hmmm… And how exactly would you suggest to benchmark it in a “good” way?
@silverasdf2055
@silverasdf2055 Год назад
Sometimes you don’t need the program to run quickly. You just need it to run. That’s why I love Python. Although it’s certainly not the fastest language, its ease of use is great for beginners, and I can write a program quicker in Python than I can in c++. I don’t think I would be a programmer if Python didn’t exist, quite honestly. And keep in mind I love C++ too just for different reasons.
@user-wx1ns5hf3h
@user-wx1ns5hf3h Год назад
You said everything right. However, there are people who are sure that there is only 1 language for all tasks in the world and that is python. I say this because I know a "hacker" who brutforce passwords in python (brutforce to find hash colision) and wondered why it took so long
@bljet4388
@bljet4388 Год назад
Bruh tell us another thing everybody already knows
@ruynobrega6918
@ruynobrega6918 Год назад
@@user-wx1ns5hf3h you can use python for everything, as long as the libs are compiled in C lmao
@ruynobrega6918
@ruynobrega6918 Год назад
Jokes aside, the level of draft code you can make in python is unmatched by any other language. And honestly, for most stuff nowadays python is trully enough.
@factChecker01
@factChecker01 Год назад
@@ruynobrega6918 That depends on the application. There are a lot of languages that are MUCH easier to use in particular applications. I have done a lot of scripting programs in Perl and it is much easier than Python for that. And MATLAB is much easier for many engineering applications.
@botondhorvath1445
@botondhorvath1445 Год назад
Please turn on -O2/-O3 in c++ the time will be mesured in miliseconds (There will be no loop...)
@morgard211
@morgard211 Год назад
Is there a reason why that's not done on default? How would the assembly code look like? Would it just be an add instruction bilion times? Wouldn't that binary be absurdly large?
@TheBuilder
@TheBuilder Год назад
@@morgard211 sometimes optimization gets in the way of debugging so its an option. Enabling optimizations would probably result in the compiler computing the loop at compile time and giving you a binary that just prints the value
@U20E0
@U20E0 Год назад
@@morgard211 also optimization is not perfect and sometimes breaks functionality in complex programs, requiring additional time to figure out what the optimized did and how to tell it to not do that.
@mmyd2405
@mmyd2405 Год назад
@@morgard211 Assembly is also capable of loops bro (jumps/calls) So about 5 lines are enough for this (if you actually loop through it unoptimized) If you Compile on -O3 the compiler would register the loops and set the variable to 1000000 instantly instead of adding 1000000 times
@botondhorvath1445
@botondhorvath1445 Год назад
@@U20E0 Optimalization only breaks code if there is UB in it. (Assumeing that you have a good compiler) If it breaks a complex program then that is because someone wrote a wrong code somewhere in it. But if the faulty code is in a wrong place, then it is extreamly hard to figure out how to fix it, maybe harder than it worth.
@ps_breakdowns
@ps_breakdowns Год назад
You can use an underscore as separator for intergers in python for better readability btw
@leaks1965
@leaks1965 9 месяцев назад
but who needs readability in a 2 line file???
@MrEgorchikZ
@MrEgorchikZ 7 месяцев назад
The catch: it doesn't include compiler optimizations on C++ part. Otherwise it would probably turn into just "cout
@ThatOpinionIsWrong
@ThatOpinionIsWrong Год назад
Isn't For Loop like twice as fast compared to While Loop in Python? C++ would still obviously win but I believe Python's score would look better.
@TheBuilder
@TheBuilder Год назад
Using the Numba library can make Python comparable to other languages for simple operations.
@unknown3158
@unknown3158 Год назад
@@TheBuilder Yes, with JIT. Doesn’t work for everything though.
@royler8848
@royler8848 Год назад
@@TheBuilder it's not even that, the range psudo iterator is implemented in c, not in python. You spend much more time running c code when using range compared to a manual while loop
@Eknoma
@Eknoma Год назад
Pythons for loop is like 5 times slower than while, as it basically uses a while loop, but also try/except, which majorly slows it down
@moneymouse
@moneymouse Год назад
@@Eknoma ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-Qgevy75co8c.html No it is not
@doomknight233
@doomknight233 Год назад
Python enjoyers: NOOOOOO you're not doing it right. Rust enjoyers: Let me try my best to show why Rust is faster than C++ than this video does, and why it should be the best! C++ Enjoyers: I wonder which libraries written in C++ they're going to use...
@Longus07
@Longus07 Год назад
As far as I know most of the libraries used by python or rust are written in c not c++ Edit: just to clarify rust mostly uses libraries written in rust but there still are a lot of c libraries which are used in rust mostly because they are already high performance, well established and we'll documented.
@shengalabu8050
@shengalabu8050 Год назад
@@Longus07 isn't c also c++ cuz if you run c code in c++ it'll still work so technically all c code is c++ but weaker
@Longus07
@Longus07 Год назад
@@shengalabu8050 NO
@Longus07
@Longus07 Год назад
@@shengalabu8050 most of Java code will run in c# excluding the libraries and imports
@shengalabu8050
@shengalabu8050 Год назад
@@Longus07bruh why you talking bout java?
@HypherNet
@HypherNet Год назад
It would be really nice to include javascript timings. On my machine: C++ is 0.66s, Python is 42.37, and JS (Node) is (amazingly) 0.53s. Presumably V8 is doing some crazy optimization, so I added a Math.random() check in the loop, and it went up to 6.3 seconds. Still very impressive.
@nvcbl
@nvcbl Год назад
nodejs is now the god of all languages
@youtubedeletedmyaccountlma2263
@@nvcbl nah is not. I hate nodejs
@fabricebalan
@fabricebalan Год назад
there is something wrong with your c++ compiler or computer then
@TheForge47
@TheForge47 Год назад
@@nvcbl lul this pice of shut up mark and Go away
@diegocantelli
@diegocantelli Год назад
Ricky, i don’t know…
@TheSwordfish269
@TheSwordfish269 Год назад
Thank you for this video!
@TheBuilder
@TheBuilder Год назад
You bet!
@Killerkraft975
@Killerkraft975 Год назад
To be honest, Python was my first language to then go on to Java, C and C++. Its very good to learn with very high level and general programming but when you dig deeper, it falls short except from certain tasks like machine learning.
@TheBuilder
@TheBuilder Год назад
Similar story with me, except I started with C, switched to Python and thought it was the best thing ever since I could write 5 lines of code to do practical things....then I started working and realized lacking a strict type system makes Python and JavaScript prone to errors especially on larger projects
@sepxviii731
@sepxviii731 Год назад
Machine learning in python is done in C...
@dtikvxcdgjbv7975
@dtikvxcdgjbv7975 Год назад
@@sepxviii731 good one 😂👍
@sepxviii731
@sepxviii731 Год назад
@Tarik B. try Julia
@sepxviii731
@sepxviii731 Год назад
@Tarik B. You live in the past century. Julia sometimes is even faster than C
@jrwkc
@jrwkc Год назад
But there is a package for that import counting_library, speed speed(counting_library.count(100000000))
@xCwieCHRISx
@xCwieCHRISx 2 месяца назад
and good packages are written in C 😁, like numpy. Python is just a powerful API for C libraries.
@godofclash2517
@godofclash2517 2 месяца назад
I didn't see printed char on console. How we can check this two examples are equivalent?
@user-qr4jf4tv2x
@user-qr4jf4tv2x 7 месяцев назад
so glad i started learning c++ again after doing javascript and now also learning rust
@alwayslg
@alwayslg Год назад
I think there’s some settings you can tweak for cout speeds. I saw it at an article wrote by geeks for geeks or something it’s about competitive coding
@hi-tk4hu
@hi-tk4hu Год назад
Yes n +=1 is faster than n =n+1 for some reason
@mactalk2871
@mactalk2871 Год назад
@@mb_entity cout is called every time there is a iirc, maybe im mising it up with printf
@04ZFZ
@04ZFZ Год назад
Iirc it's cin.tie(0); sync_with_stdio(false);
@unknown3158
@unknown3158 Год назад
@@mb_entity You are not dumb, you are actually correct.
@alwayslg
@alwayslg Год назад
@@04ZFZ I think this is it
@christianm4906
@christianm4906 Год назад
Now process data on each iteration and you'll see how python performance decreases dramatically. Depending of the case I've noticed that python is a about 500× slower. For example try calling a method within a custom class.
@christianm4906
@christianm4906 Год назад
@@ILubBLOfficial that's OK. However not everything can be run with those libraries. I'd prefer integrating python with C++ using a wrapper such as Pybind11, SIP, shivoken, boost::python, etc . That approach for optimisation is much more powerful as it brings the best of python and C/C++ together. By the way, Numpy is a descent approach. However Eigen which is the C++ counterpart is much faster and optimised. Pandas is a huge package. Too many things there that aren't always necessary.
@christianm4906
@christianm4906 Год назад
@@themystic5935 realistically speaking. Many companies specially in embedded systems, prototype in python and rewrite everything in C/C++ for production. I still consider that Python and C++ work fine together. They are just tools not religion.
@christianm4906
@christianm4906 Год назад
@@ILubBLOfficial Eigen which is the C++ equivalent to numpy is about 20 or 30 times faster than numpy. And also, not always you can avoid Python bottlenecks. However I don't critice Python for that. I think it is still a great scripting tool for a range of applications. What I critice is that there seems to emerge a new generation of developers, most of them beginners that frenetically love a specific programming language as if it were a sort of religion. They wrongly think they can do everything in a single programming language and they don't admit the weaknesses of their favourite tool. They are just tools, not religious. There are also many areas in which Python is a better choice than other tools, but when it comes to optimisation, performance, and concurrency, Python performs very poorly. Probably worst than the vast majority of its competitors, and that's why it is recommended to learn more than just python.
@AlexRodriguez-gb9ez
@AlexRodriguez-gb9ez Год назад
@@christianm4906 Where did you get your statistics from. From what I see its more like 2-15x slower.
@AMindInOverdrive
@AMindInOverdrive 7 месяцев назад
A simple but effective example for sure!
@MrPyach
@MrPyach 2 месяца назад
Don't you think c plus plus compiler removed effectively empty cycle from assembly code?
@sustrackpointus8613
@sustrackpointus8613 Год назад
For loop in python is faster than while, should use first one
@TheBuilder
@TheBuilder Год назад
It's faster but not by much
@rivercape982
@rivercape982 29 дней назад
​@@TheBuilderit is much faster, around double
@Jp-ue8xz
@Jp-ue8xz 26 дней назад
@@TheBuilder uhh... "from numba import jit". Wrap counter in function with decorator @jit(looplift=True). Same operation takes just well under 1s
@swiftz6098
@swiftz6098 Год назад
You can get the time down to 25.8 seconds using a for loop instead of a while loop in python.
@swiftz6098
@swiftz6098 Год назад
I lied, that was without printing the number. for loops are still faster though.
@furkanunsal5814
@furkanunsal5814 Год назад
​@@swiftz6098 well, that is absurd.
@wrnlb666
@wrnlb666 Год назад
he can also make the C++ Program about 4 times faster using register int n
@arthur1112132
@arthur1112132 Год назад
@@wrnlb666 the compiler should automatically do that tho
@wrnlb666
@wrnlb666 Год назад
@@arthur1112132 But it's c/c++, so the compiler gives you the power to choose if you, the creater of your own code, want to let the compiler do that or not.
@nexpro6985
@nexpro6985 2 месяца назад
Can we get a demonstration of how long it takes to write and debug some c++ data processing tasks that python can do in one line of code?
@gregoryfenn1462
@gregoryfenn1462 Год назад
The Cpp integer needs to be volatile otherwise the compiler can optimise it's value and see that the function is basically just "print on billon" and bypass rhe time counting
@skillfulfighter23
@skillfulfighter23 Год назад
Depends on the optimizations but I assume it would be faster than 2.4s
@KanashimiMusic
@KanashimiMusic Год назад
Okay seriously how can you live with a tab width of EIGHT? And also why do you have different tab sizes for C++ and Python?
@SkySentry7
@SkySentry7 3 месяца назад
mine is 2😂
@Valentyn007
@Valentyn007 27 дней назад
Mine is -1 😁
@SkySentry7
@SkySentry7 27 дней назад
@@Valentyn007 🗿
@KanashimiMusic
@KanashimiMusic 27 дней назад
@@SkySentry7 While I personally don't like 2, I think it's tolerable at the very least lmao
@KanashimiMusic
@KanashimiMusic 27 дней назад
@@Valentyn007 giga based
@prateek16
@prateek16 Год назад
Does that mean python is very slow as compared to c in running big blocks of code ?
@TheBuilder
@TheBuilder Год назад
I think Python is faster than C when I want to get something practical done
@captainswing4040
@captainswing4040 Год назад
@@TheBuilder python is a great scripting language with enrmous support but it has a purpose and that is not same as that of C
@jebbi2570
@jebbi2570 Год назад
@@TheBuilder But it quickly become slow when the project evolves.
@taihuynhuc3135
@taihuynhuc3135 Год назад
@@jebbi2570 How much your project will evolve anyway? Actually many softwares out there dont need to evolve that much.
@corex6109
@corex6109 Год назад
@@jebbi2570 The great thing about Python is that whenever you truly want/need C's speed, you can just write a shared library providing that functionality in C, then call it from Python. Of course this too has its limits, but it's a nice workaround for when there's one significant bottleneck.
@michaegi4717
@michaegi4717 Год назад
Perfect example, why there are optimized languages for different usecases. This comparison is like compare a kitchen knife and a leatherman by chopping onions with both.... or by turning a screw into wood with both.
@dewiz9596
@dewiz9596 Год назад
I had my “road to Damascus” moment in 1981 when I wrote and ran a similar routine on the Original IBM PC. . . first, interpreted BASIC, then Compiled BASIC, then in C. I was showing my kids. Well, I was blown away. Even though I had written some “pretty good” code (worth about $1,000,000) for my employer, I NEVERwrote another line in BASIC.
@wrmusic8736
@wrmusic8736 5 месяцев назад
My first programming experience was with ZX Basic. Speccy allowed to do Assembly (or rather literal machine code) by "poking" memory (e.g. storing literal values in it and then calling a desired memory address to execute), but sadly my child brain couldn't comprehend it. Basic was slow of course and I had to scratch my head trying to understand how all the other programs ran so fast for a while. At some point I learned there was a C editor, but I couldn't find the tape anywhere.
@perfectketchup
@perfectketchup Год назад
2.5s is excessively high, whats your CPU? I get ~250 ms on C# JIT optimized, ~750 ms on unoptimized with Ryzen 7 Laptop CPU
@eherlitz
@eherlitz 4 месяца назад
Got 290 ms on c# compiled for release and run on a linux laptop with a Xeon E-2286M CPU.
@Jp-ue8xz
@Jp-ue8xz 26 дней назад
IF I run this raw C with no optimization flags in my asus potatobook from 2016, then I get similar times as this guy. But just using -O2 flag drops it to less than 10ms. It's an incredibly weird "flex" anyway considering python also takes well under a second to do this if you wrap the thing in a function and use a JIT compiler
@itdw5942
@itdw5942 Год назад
for best optimization you can set n to 1 billion and use a prefix decrement inside the condition
@codingjq
@codingjq 7 месяцев назад
I thought gcc turns i++ into ++i automatically?
@jojo989GD
@jojo989GD 4 месяца назад
why did you used size_t instead of int? sorry for that nooby question, it seems curious for me :p
@codycast
@codycast 3 месяца назад
Can someone explain this to a non-programmer? Wouldn’t the code to the CPU’s be the same? Don’t compilers, even if they’re being done in real time, change the code into assembly instructions for the processor? I would assume that such a simple program would result in the same instructions being seen by the CPU.
@tholod
@tholod Месяц назад
I know I am two months late to answer, but I think your question is interesting. Your mistake is to considered Python as a « compiled at runtime » language, which is not true. Compiled language are transformed to CPU instructions during compilation as you seem to know. Python is an interprated language, that means for each code line, the python program (python.exe or /bin/python) reads the line (reading a string is a set of CPU instructions), and updates its state in memory according to the python code. It is like there is a layer between CPU and code, the python code will never be translated into instructions. The python program is for python what the CPU is for C/C++ language : the executor. However the python program is made of CPU instructions,and running it to execute the code line takes CPU time to execute. The same applies to CPU, you can have an algorithm done with instructions that runs on a CPU, but you can also design a chip that is specified to do this same algorithm and it will be quite faster than the CPU (if it is well-designed) because there is one layer less (there is no more instructions that translates the algorithm). However you lose the versatility of a CPU which can execute different algorithms. It is the same with python, it is a language where programs can be run and debugged fastly because there is no compilation time, but with less efficiency than compiled language (some tools try to avoid that by compiling python code at runtime like Numba and get better performances).
@samuelluc132
@samuelluc132 4 месяца назад
Dude it takes 341 milliseconds for nodejs on my machine. On what pre-world war machine are you running your C++ code for it to be so slow?
@TheBuilder
@TheBuilder 3 месяца назад
Turn off optimizations
@ADEpoch
@ADEpoch 2 месяца назад
So how do they compare with for loops instead of while loops?
@alexeynaidiuk399
@alexeynaidiuk399 Год назад
use for loop instead in python. for loops is basically written in c in cpython implementation, must to be faster than while statement
@kris.yochev
@kris.yochev 6 месяцев назад
If you use -O2 or higher, the C++ loop gets folded completely, making it even faster
@ChrisM541
@ChrisM541 6 месяцев назад
You mean unrolled?
@vladimirarnost8020
@vladimirarnost8020 6 месяцев назад
@@ChrisM541No, he means replaced with a precomputed constant, i.e. 1000000000.
@ChrisM541
@ChrisM541 6 месяцев назад
@@vladimirarnost8020 Thanks, that's interesting. Is there ever a danger this type of 'optimisation' happens in the wrong situation?...where it is absolutely not wanted?
@vladimirarnost8020
@vladimirarnost8020 6 месяцев назад
@@ChrisM541 Good question. The compiler is usually doing a good job not breaking code by over-optimising it. However, when the goal of such a loop is to wait for a certain amount of time, e.g. in embedded code touching hardware directly, the loop removal might break such code as it would simply run too fast.
@NikPower-gs6hs
@NikPower-gs6hs 5 месяцев назад
@@vladimirarnost8020you can specify if functions or certain code parts get optimized or not just for that purpose
@hedgeearthridge6807
@hedgeearthridge6807 2 месяца назад
I ran it in Common Lisp and Racket (translated by ChatGPT because I still suck at them) on Linux Mint with a 5600x CPU: - Python took 39 seconds. - CLisp using SBCL took 0.222 seconds. - I gave up on GNU Clisp after 6 minutes. - Racket took 0.845 seconds. I altered them to print the results to make sure they actually did the task, and they printed one billion. The Racket script is relatively complicated and might not be optimized well. But these results are crazy!
@AshleyNewson
@AshleyNewson 7 месяцев назад
If optimisations were enabled (even -O1), any decent C++ compiler (such as Clang++) would replace your entire program with `std::cout
@vojtechadam5764
@vojtechadam5764 Год назад
What about C++ and C#? What would be faster in these tasks?
@cycv5881
@cycv5881 Год назад
True story, my friend and I went to a coding interview where they treated all languages the same and had a run-time limit. We both got the question, I used python w/ DP, he used C w/ brute force :)
@firstlast9813
@firstlast9813 10 месяцев назад
Dang! Brute force? 😂
@8BitGamerYT1
@8BitGamerYT1 7 месяцев назад
And who did better
@howabout2138
@howabout2138 8 дней назад
​@@8BitGamerYT1the Python probably still runs and c brute force finished before guy fully lifted finger off enter
@puppergump4117
@puppergump4117 Год назад
By the way, these types of loops would normally just be optimized to print out 1 billion from the start.
@Hephasto
@Hephasto Год назад
I’d love to see C and assembly for comparison. But not shitty count, something more realistic
@petrjara7559
@petrjara7559 Год назад
@@Hephasto Nowadays if you use some better C compiler it generates like 95% perfect asm code. For "more realistic" = more complicated programs it's even faster to write in C unless you REALLY know how to optimize in assembly just because there is already 50 years of optimization experiences in the compiler
@donovan6320
@donovan6320 Год назад
But that would have taken less than a millisecond.
@puppergump4117
@puppergump4117 Год назад
@@donovan6320 You can try it, just do the same loop but compile with the /02 or /03 flag. It won't compute values that aren't read. Now a better way to test how quickly a computer can increment would be to start a timer and use some time limit as the condition to exit the loop. The result should be in the hundreds of millions per second, but I'll test it myself in a sec
@donovan6320
@donovan6320 Год назад
@@puppergump4117 I can too lol, would do it
@macaulayfranklin4860
@macaulayfranklin4860 2 месяца назад
So which one is better foe maching learning
@hess2906
@hess2906 6 месяцев назад
A modern compiler such as the GNU C++ compiler you use in the video, do many passes and optimisations. There is a possibility the compiler may have changed the code to something other than 1 billion increment instructions that would make this comparison fair. However the point still stands that python will always be much slower for operations like this; it's not the right tool for this job, just as you wouldn't use a screwdriver to punch a nail into a wall, though the screwdriver has uses of it's own
@TheBuilder
@TheBuilder 6 месяцев назад
Optimizations were turned off in the compiler, counting up to a billion actually takes a second or two on most processors
@gazzalifahim
@gazzalifahim Год назад
How do you show the time required like Real, User, System etc? Seems So cool 😀
@glidersuzuki5572
@glidersuzuki5572 Год назад
That's the 'time' application he uses at beginning. Usage is as follows: time
@gazzalifahim
@gazzalifahim Год назад
@@glidersuzuki5572 Thanks a lot. 💯
@TheBuilder
@TheBuilder Год назад
this
@bobuccman1424
@bobuccman1424 Год назад
windows user when encountering built in unix commands be like
@1over137
@1over137 Год назад
I actually came across this recently. I was trying out micro-python for the first time on an RP2040 Rasberry Pi PIco W. The embedded version of "Hello world" is "Blinky", you blink the LED on and off. Wow! I figured out the gpio library, but I couldn't bother to find the "Delay" function/method/module, so just counted to 100,000. I was expecting to have to ramp that up much higher and thankful I didn't need to think about datatype in python.... but no. The LED blinked with about 1Hz frequency. counting to 100,000 took 500ms! To be honest I haven't switched it back on again. I don't think it's the RP2040's fault, I think it's python's fault. If I did that in C on the same board the LED would just look a little dim and flickery. If I did it in ASM it would just look like it was on.
@asuasuasu
@asuasuasu Год назад
"counting up to a number" is a very bad baseline for comparisons. For one, these languages have extremely different performance characteristics. (Micro)Python is naively interpreted. It absolutely doesn't have advanced optimization passes that would make it able to reason about this. A C++ compiler will be able to make sense of your counting, and is likely to trash away your loop, 1. because it'd be able to figure out that you're just counting up to 100000, and 2. because you're probably not even using the value... so it can just optimize it away entirely. Though, if you need anything reasonably fast then MicroPython is not a good idea, for sure. I heavily use Python and I dislike the idea of using Python in embedded programming. Assembly is not a magic bullet. If you know your C/C++ and optimization, then dropping down to assembly is rather unlikely to let you write faster code.
@jackroutledge352
@jackroutledge352 Год назад
Bear in mind that the raspberry pi foundation's goal is to teach people programming. Python is their standard language for everything they do (hence raspberry "pi"), because it's easy to learn. Having said that, you can program the pico in cpp as well.
@qwertykeyboard5901
@qwertykeyboard5901 6 месяцев назад
Ported an NQUEENS algorithm to both J2ME (SPH-M330) and an arduino (ATMEGA328P). The arduino was ~20% faster. Arduino UNO clones usually clock the ATMEGA328P at 16Mhz. The Samsung has a full 32bit ARM processor at (probably) 192Mhz. It might even utilize the "jazelle" instruction set. Thats honestly really fucking pathetic for Java. Needless to say, I was incredibly pleased to find out that my stupid conway GOL demo ported to C (Qualcomm BREW) was so fast that blinkers are a blur on screen.
@benr9914
@benr9914 Месяц назад
I want to see the compiled code to see if the compiler is able to optimize the loop out.
@osu9400
@osu9400 5 месяцев назад
If you set a constant for 1,000,000,000 does that impact performance?
@fbiagentmiyakohoshino8223
@fbiagentmiyakohoshino8223 Год назад
time to do this in other languages like lua, javascript and csharp
@JustAPersonalUseBarb
@JustAPersonalUseBarb 6 месяцев назад
The cool thing about python is that there are so many ways to optimize things. Basic code like this may be really slow, but there are ways to 100x things like this
@uniquetobin4real
@uniquetobin4real 6 месяцев назад
Thats why i hate python... Never straight there are a billion ways to do the same thing, fkn snake 😂
@Pekara121
@Pekara121 6 месяцев назад
​@@uniquetobin4realthis person really said "it's cool when things are complicated and not simple 😃" like what?? 😂
@F14_Tomcatter
@F14_Tomcatter 5 месяцев назад
Such thing is seems near impossible in this simple scenario, demonstrate it if you think that you are true.
@EWILD99
@EWILD99 4 месяца назад
@@F14_Tomcatter the fact that the code runs in about 4 seconds when you run it not 1 minute because he ran a precompiled C file, but the python file wasnt so it compiled then ran. if you run it a second time it is about 4 seconds as tested
@MrRjizz
@MrRjizz 4 месяца назад
@@EWILD99 i remember implementing the dutch flag problem for large suffix arrays for a algorithm course i had and running one large sample set that would take like 3.0s on java would take the python code like a hour.
@mixomax1161
@mixomax1161 Год назад
if you use a for loop, it ran (on my computer) in 44 secs. for x in range(1_000_000_000): n = 1 print(x)
@Layput
@Layput 6 месяцев назад
What's the reason for this? Is it the method of compiling?
@azkh694
@azkh694 5 месяцев назад
Python code’s 1st execution is also its compiling stage. On the 2nd run, it is way faster. You should have either calculated c++ compiling time + run time or compare python’s 2nd run
@sinoichi
@sinoichi 4 месяца назад
Python does not compile anything... it's interpreted language. Second faster run it's just cache layer, but it's only temporary :)
@catfan5618
@catfan5618 4 месяца назад
@@sinoichiWrong, it compiles the code into byte code which then gets interpreted.
@sinoichi
@sinoichi 4 месяца назад
@@catfan5618 Then you wouldn't need python installed. 😉 Sorry, python scripts are executed line by line by python interpreter.
@sinoichi
@sinoichi 4 месяца назад
​@@catfan5618 And if you think it is compiled. So where does the binarie goes? Where is executable file? Because when you run python script it does not change it's form. It's still editable. Even if it would be compiled to RAM, there is no sense to not get compiled files.
@TheThilor
@TheThilor 4 месяца назад
@@sinoichi Compiled does not mean we get a binary. See Java, we compile our Code, but dont get a binary. Python compiles it code into bytecode and stores this into .pyc files.
@0xN1nja
@0xN1nja Год назад
0:28 I KNEW IT 😂
@TheBuilder
@TheBuilder Год назад
Python is actually faster if you ignore the numbers
@notalexbaker4959
@notalexbaker4959 5 месяцев назад
I’m new to programming. I’ve been learning intro python. Can someone explain why the languages have such different processing speed?
@TheBuilder
@TheBuilder 5 месяцев назад
every data type in Python is a lot more complicated compared to C or C++, for example, every time you interact with a number in Python, the program will call various other functions while in C or C++ the operation is only a few assembly instructions
@TurtlemanLiam
@TurtlemanLiam 4 месяца назад
also depends on what your running it on
@seasong7655
@seasong7655 10 месяцев назад
I've just tried this with pypy: c++ 1.04s python 40.21s pypy 1.01s
@xEndless11
@xEndless11 2 месяца назад
wow nice! I didn't even know there was something even faster, i will figured out ^^
@thecheesybagel8589
@thecheesybagel8589 Месяц назад
this is because the back-end of python in written in C. you can get the python interpreter to loop in C rather than in python
@felixmarshall8614
@felixmarshall8614 Месяц назад
@@thecheesybagel8589 exactly. It was strange for me to watch speed competitions when the developer did not use all the capabilities of Python for this
@PatrykGlogowski
@PatrykGlogowski 27 дней назад
@@felixmarshall8614 he also dont use capabilities of c++ -o2
@cmilkau
@cmilkau Год назад
Idk whether it's still the case but Pypy (a python interpreter designed for speed) used to beat C++ on some regular expression benchmark (basically C++ had to redo all the work for every iteration whereas the JIT could hardwire the regular expression and optimize it).
@asuasuasu
@asuasuasu Год назад
if the comparison was against std::regex, then that's no surprise, because std::regex is hilariously slow. like, "outperformed by literally any other option" slow. CTRE would be a different story, though :) tracing JITs are interesting tech though! there are definitely cases where it would be totally expected to trash an AOT compiler's optimizations.
@cmilkau
@cmilkau Год назад
@@asuasuasu JIT shine when you have data that is constant in practice but variable in theory. Like, matching repeatedly against a fixed regex. A precompiled regex lib has to analyse the regex every time. A JIT can compile a short program that represents the regex.
@donovan6320
@donovan6320 Год назад
@@cmilkau but also std::regex is slow and you should never really use it.
@alanramirezherrera7485
@alanramirezherrera7485 6 месяцев назад
@@cmilkau C++'s std::regex is not a good choice (nor a good way to benchmark C++ vs anything else), it is slow due to it's design, almost anything outperforms it.
@maanavsingh1914
@maanavsingh1914 5 месяцев назад
@@cmilkau you can harness similar optimizations on compiled languages using PGO with a modern compiler to generate more optimized machine code for your input space.
@linux2420
@linux2420 7 месяцев назад
I thing gcc has some optimisations enabled by default. Is this also the same result without optimisations? It could just be that the compiler sees what the code is doing and simply sets n to a billion right off the bat
@ItsCOMMANDer_
@ItsCOMMANDer_ 4 месяца назад
Only with "-On" flag where "n" is the optimisation level, with n >= 2 the for loop will be removed, below thta, nothing willl change
@johnflare5925
@johnflare5925 5 месяцев назад
What shell are you using here?
@nolanfaught6974
@nolanfaught6974 Год назад
You can make the C++ run even faster by using printf() instead of std::cout. I managed to reduce the speed to 50ms with just that change
@target844
@target844 Год назад
That is not the difference. You change is because of what optimization the compiler did. I god 30 microsecond for the code above and -O3 optimization. The compiler realise the final value of n do not depend on anything unknown at the time of compilation and can just set it to the final value and remove the while part completely. Test to add volatile as a keyword to n or test both print methods in the same compiler
@nolanfaught6974
@nolanfaught6974 Год назад
@@target844 Good catch, execution time was significantly slower once I used volatile. I've had bad experiences with std::cout in the past, to the point where almost 1/3 of my execution time was spent on basic I/O. A rewrote the backend to use `printf` and performance increased quite a bit.
@JohnBoen
@JohnBoen Год назад
Nobody just counts- except to understand the overhead. The things I would do at each increment are probably written in C, and likely designed to run on a GPU. I use python to execute functions in libraries. These are likely to be faster implementations of code than I could write in any language simply because they are typically open source and have lots of eyes on them. Was that the point- python is slow at loops?
@skotch_izolentovich
@skotch_izolentovich 3 месяца назад
Whe do you use postincrement? Isn't it more effective to use preincrement?
@viper_0097
@viper_0097 3 месяца назад
compiler can optimize that if using postincrement have not difference with preincrement
@IncognitoDeveloper
@IncognitoDeveloper 3 месяца назад
have you tried constexpr in c++?
@PUNCHLER
@PUNCHLER Год назад
I think if you use -o2 while compiling c++ it will be more optimized
@uwirl4338
@uwirl4338 Год назад
Unlikely to make a huge difference in this simple of a program
@wrnlb666
@wrnlb666 Год назад
@@uwirl4338 no, with O2 optimization, the compiler will just set n to 1 billion before the while loop. To truly optimize the code, he can add a register keyword when declaring n, that will make the program runs 4 times faster on my pc
@taragnor
@taragnor Год назад
@@wrnlb666 Oh really? I was under the impression the register keyword didn't even really do much on modern C/C++ compilers and was more a relic of the past, since modern compilers are so much better at optimizing now.
@target844
@target844 Год назад
@@uwirl4338 -O2 will make an enormous difference. The optimizer can and will realize that the end value of n does not depend on anything unknow at he time of complication that can change so it can be precalculated. If you look at the generated assembly -O2 will eliminate the loop completely. I tested the code on godbolt with the option and -O0 takes 3 seconds compared to -O2 at 30 microseconds. It is an optimization of a factor of 100,000, so an enormous difference. That is a runtime measure in the program around all of the code shown in the video so any startup time is not included. If iI ht optimized variant measure time to before the value is printed the time I get is 0 µs. So the 30 microseconds is the time to print the result. If you add the volatile keyword for n it can be optimized away and you get 3s gain regardless of -O0 or -O2.
@wrnlb666
@wrnlb666 Год назад
@@taragnor compiler optimization optimize things that doesn't make the result looks different. In this case, setting n to 1 billion before the while loop doesn't make the result different. Because n is not volatile, and the compiler knows that it will not be changed outside of the program.
@lenoirx
@lenoirx 6 месяцев назад
You can do a for loop instead in Python to optimize it even further
@markpozsar5785
@markpozsar5785 5 месяцев назад
Or don't ask python to do things it isn't meant to do
@diogobazzanella6565
@diogobazzanella6565 3 месяца назад
Using "print(n)" in python, don't make slower when running?
@nathanwhite704
@nathanwhite704 Год назад
Was this comparing just the initial compile times or the finished program? How did the c++ do 2.4 seconds? I ran the same thing in visual studio 15 minutes ago and it's still counting. You must have a beast of a workstation or I messed up somewhere.
@TheBuilder
@TheBuilder Год назад
are you printing every single number?
@nathanwhite704
@nathanwhite704 Год назад
@@TheBuilder yes.
@TheBuilder
@TheBuilder Год назад
@@nathanwhite704 there's your problem
@Insanit13s
@Insanit13s Год назад
I was curious to get the times on my machine. C : 1s740 Python: 47s Perl: 34s
@MrKrzysiek9991
@MrKrzysiek9991 Год назад
JS ~2.0 sec
@rodrigozayit
@rodrigozayit Год назад
java 0.025s
@ricardoangelesgomez8667
@ricardoangelesgomez8667 4 месяца назад
Python on PyPy: 1.083s
@PrimeToolbox
@PrimeToolbox Год назад
That's a important trade off. Does anyone here have experimented compiling Python code with Cython or Numba? I wonder how it will perform in this situation. Also, now with Python 3.11 it got a bit faster. But still much slower than Cpp off course.
@spartanbirdz
@spartanbirdz Год назад
3.11 version made it 15% slower for me lol.
@agalliazzo
@agalliazzo Год назад
Just tested in a RPi4: - Python 3.9 + Numba 2.257s - C++: 6.052 I, honestly, was not expecting this...
@marcotroster8247
@marcotroster8247 Год назад
Numba needs to JIT compile your loop. It converts the code into C and compiles it on-the-fly. That's why the first execution is slow. If you use the function a lot, it's as fast as C. And it's even smart enough to put your vectorizable code onto the GPU without you noticing, it's crazy good 😂
@agalliazzo
@agalliazzo Год назад
@@marcotroster8247 Really I was not expecting that with numba the time is about 1/3 of a plain c++ loop... I was expecting something similiar in performance, so 6s about...
@marcotroster8247
@marcotroster8247 Год назад
@@agalliazzo Numba is really good at vectorizing loops 😂 I suppose it's doing multiple additions at once with SIMD optimizations or GPU 😎
@codingwithk5725
@codingwithk5725 Год назад
What IDE are you using?
@TheBuilder
@TheBuilder Год назад
not an ide just vim with green text
@PediculusPL
@PediculusPL 3 месяца назад
Recently I did a project at my Uni, that focused on testing the performance of few languages - in essence C, Rust, Java and Python. I wrote a mlp neural network (same architecture - same amount of layers, each layer having the same amount of neurons) in each of these languages. The goal was to measure time of classifing 10000 data samples from MNIST dataset. The results looked like this: C ~ 2 sec. Rust ~ 3 sec. Java ~ 4.3 sec. Python ~ 8 minutes
@AndreasPinkert
@AndreasPinkert Год назад
The thing is that the C++ compiler will understand the loop and optimise on its own. -O3 does the trick. The loop will not even be generated as machine code. check compiler explorer.
@huutuan209
@huutuan209 Год назад
You really added a semicolon in Python 😂
@SamMcPieVTOL
@SamMcPieVTOL Год назад
Python enjoyers be like: oh my gosh you added STRUCTURE and READABILITY to your code?? lol lmao wtf is that what are you?? A loser????
@Morimove
@Morimove Год назад
this is called muscle memory 😂
@TheBuilder
@TheBuilder Год назад
subconscious bias
@linusbrendel
@linusbrendel 6 месяцев назад
You can use underscores in numbers in Python. A billion can we written as 1_000_000_000.
@MrNucleosome
@MrNucleosome Месяц назад
The overhead here is the Python standard print function. If that function could be optimized maybe with cython or similar, i wonder how the results would be.
@pnachtwey
@pnachtwey Год назад
C++ has the advantage of using register variables. That reduces variable memory accesses to zero while in the loop. Python must push and pop n on and off the stack.
@blip666
@blip666 Год назад
How do you know this ?
@purdysanchez
@purdysanchez Год назад
I too would like to see more info, but it's a pretty plausible explanation.
@ctleans6326
@ctleans6326 Год назад
​@@blip666 Compiler explorer can show the assembly output of compiled programs and you can see it directly interacting with cpu registers (eax, edx, etc.). Cpu registers are far faster than memory accesses. I don't use python so I don't know how it works internally but it's physically impossible for a language to optimize with cpu registers without compiling to binary. There are way more reasons why c/cpp/rs are magnitudes faster than python. 1, yes, it is a compiled language so any "actions" are just one instruction to the cpu. 2 Static typing also makes it faster because memory is constant size and no need for extra memory to store types. 3. Static typing and other restrictions allow optimizing compilers, esp. llvm to analyze data flow and other stuff to inline/remove/optimize assembly. 4. garbage collectors do add overhead to the code, i don't think by much but languages without gc, especially rust, know exactly what parts of memory to deallocate.
@Fl4shback
@Fl4shback Год назад
I would expect the compiler to just optimize the loop away and set the value to 1 billion...
@DemonixTB
@DemonixTB Год назад
@@Fl4shback it would do that if any optimizations were enabled for the compilation in the video, the author said in another comment that it felt unfair to do since python cant do that, lol
@Hooverdreng
@Hooverdreng Год назад
Nice comparrison. However I think a lot of people are a bit too invested in efficient code. In many environments, computation time is much less expensive than coding time. So if you only have to solve a given task once or a few times, the computation cost is easily mitigated by the saving in coding time.
@sitting_nut
@sitting_nut Год назад
Why do you think python coding time less than c++ coding time? maybe true about c if one codes from scratch (instead of including libraries) for say data structures etc. but definitely not true about c++.
@Hooverdreng
@Hooverdreng Год назад
@@sitting_nut I can’t speak for all disciplines. I am doing data analysis and measurement and control for experimental physics. And for that purpose Python is the faster and more flexible option. Could I write the same thing in C++ and have it be faster? Sure. But I don’t need to and using python my code will also be more accessible to people following up on my work. I don’t need an F1 car that only the cool kids know how to drive. I need a Ford that benefits more people.
@sitting_nut
@sitting_nut Год назад
@@Hooverdreng iow you are supporting your bias with personal anecdotes instead of objective data (and say all that unironically while you are saying your work is about data analysis, measurement, and experimental physics). anyway, once again my point was that your claim in op, that there is a coding time increase for using c++ over python, is false. that point had nothing to do with f1 cars used as metaphors.
@cagefury3789
@cagefury3789 Год назад
@@sitting_nut Seriously? Idk, maybe he got that impression with a simple hello world? lol. In c++ you have to import/include a std library, use a bitshift operator and put it in a main function. In python you type "print".
@sitting_nut
@sitting_nut Год назад
​@@cagefury3789 if you know anything, you know you don't actually need to include std lib or io. and why do you need a bitshift operator in hello world? fact that you had to make up such absurdities to make your claim, indicate even you , ignorant as you obviously are , know that, claim there is a coding time increase for using c++ over python, is false. typically you pretend you don't know python scripting mostly consist in importing other libraries. and how is " "__name__ == “__main__”" , and other such nonsense to structure any significant program , an improvement on main function in c++?
@_Gubi_
@_Gubi_ 5 месяцев назад
Why exactly is it so much slower? Is it the way it handles loops, the numbers, or something entirely different?
@sanartvideos
@sanartvideos 3 месяца назад
I got the same result in C and Python using huge random complex tasking with optimized code in Cython / CPython and better results with Pytorch. Python provides me interpreted and compiled worlds with simple code and few hours of programming.
@noapoleon_
@noapoleon_ Год назад
Tried the same thing on my PC with c++ and c Found something weird. With the exact same c++ code my PC finishes in 1.27 seconds. But if I replace the 'size_t' with an 'int' it finishes in 1.1 seconds. Which is kind of to be expect since size_t is bigger than int but when I tried the same in C there was NO DIFFERENCE in speed for both int and size_t??? Meaning that c++ is slower with size_t than c for some reason. C did both in 1.1 seconds btw
@griglog1309
@griglog1309 Год назад
Maybe you have compiled the C program for 32 bit?
@noapoleon_
@noapoleon_ Год назад
@@griglog1309 howndo you do that??
@noapoleon_
@noapoleon_ Год назад
@@griglog1309 c++ was slower that doesn't make sense
@griglog1309
@griglog1309 Год назад
@@noapoleon_ C and C++ performance is identical. That's why I suppose one of the programs got compiled for 64-bit and other for 32, because in 64 size_t type is twice larger and takes more time to process
@griglog1309
@griglog1309 Год назад
@@noapoleon_ To change the target platform you should add arguments to the compiler command. And to check what you've got, run "file " on Linux
@popovanatoliy4736
@popovanatoliy4736 Год назад
yes, when you need really quick executing, you go to c. but if you want some comfort and development speed, you go to python.
@vit.c.195
@vit.c.195 4 месяца назад
What a compiler optimization options?
@stifhbarragan637
@stifhbarragan637 Год назад
I don't understand, my code in Python finished the number count first, how supposed to be the comparation
@TheBuilder
@TheBuilder Год назад
care to elaborate?
@joytimmermans
@joytimmermans Год назад
Well you should always use the for with range in python if you can. Since that is C under the hood (in python 3). So kinda misleading. For more info look at m_coding’s video
@Ruchunteur
@Ruchunteur Год назад
It still slow though. I tried this: ``` n = 0; for _ in range(1_000_000_000): n+=1 print(n) ``` and it took 1m38s to finish
@joytimmermans
@joytimmermans Год назад
@@Ruchunteur That is true, but it is faster then the while loop, you can even speed it up more with pure python to just use build in functions instead of using the for looping. max(range(1_000_000_000) speed is up from 1m30sec to 19sec. you can then speed this up more with numpy but also you can speed it up more with just math and seeing that the highest one will be 1_000_000_000 and then just print 1_000_000_000 making it run in 0.5 sec. would reccomend the mcoding video ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-Qgevy75co8c.html for a explanation. but yea that is the dangers with python it can get really really slow if you dont know what you are doing
@laustinspeiss
@laustinspeiss Год назад
Python is a relevant language for some tasks, but it’s main claim is it’s a modern interpreted language - easy to teach. A few years ago, it would have been BASIC, compiled BASIC, then Pascal. Java tried to slide in, but was pigeonholed for slow web applications. Things have to move forward, just like C, C++ and so on.
@user-td8mm1sy3j
@user-td8mm1sy3j 6 месяцев назад
«««slow web applications»»»😁😁😁 Then what is not in your opinion?
@GraceKeyz
@GraceKeyz Месяц назад
Would like to see an int wrapped in an object for another comparison.
@apollosun2913
@apollosun2913 3 месяца назад
I added std::cout
@erin1569
@erin1569 Год назад
You can use _ in python the same way you use ' in C++: 1_000_000_000 You can also keep the semicolon: print(123); works in python without issue
Далее
Compiled Python is FAST
12:57
Просмотров 94 тыс.
C++ Developer Learns Python
9:26
Просмотров 2,7 млн
TRY NOT TO LAUGH 😂
00:56
Просмотров 2,7 млн
Why You Shouldn't Nest Your Code
8:30
Просмотров 2,6 млн
4 Billion If Statements | Prime Reacts
9:47
Просмотров 509 тыс.
Why is Python so Slow?
10:44
Просмотров 535 тыс.
Most Popular Programming Languages 1965 - 2022
6:47
Просмотров 1,5 млн
How One Line of Code Almost Blew Up the Internet
13:47
Every Programming Language Ever Explained in 15 Minutes
15:29
The Ultimate Tier Programming Tier List | Prime Reacts
26:57
how NASA writes space-proof code
6:03
Просмотров 2,1 млн
Странный чехол из Technodeus ⚡️
0:44
Technics 1500 Ремонтируем
52:13
Просмотров 48 тыс.
Юмор AirPods Max 😃
0:36
Просмотров 22 тыс.