|
|
|
|
|
by Woodi
44 days ago
|
|
Over the years there already was almost the identical articles about making in language X program as fast as C or C++... And results was exactly the same: write C/C++ style programs! Why ? Because of CPU's architecture - given CPU one just need to structure code in a way CPU can perform efficiently! Is it such surprising that all sugar and multi-functional smartness have cost of all that if's and loops like maps? CPU is just rock stupid and can't do anything else! That's from where all that specialized instructions are coming and programs just need to be structured or compiled to CPU arch way to perform as fast as CPU and rest of hardware allows... And there are some "Java machines" and that is exaclty the same story: use CPU native lang :) As much as posible. So: give us better cpus pls :) |
|