>>106560486
>No matter how many cores you have you're never gonna get more than a 2x speedup outside of benchmarks.
Wrong. Literally wrong. It depends on what fraction of the program parallelizes, what the cost of parallelizing is, and how much time is spent communicating and coordinating. You can definitely win big in some cases.
>>106561141
>Amdahl's law is retarded and has no relation to reality.
Also wrong, but the rest of what you wrote is right.
Amdahl's law is true enough, but you need to be very careful with what it actually says. Switching to a natively parallel algorithm with a lot of cores can win massively, but if most of the code's execution time is dominated serial or effectively-serial operations, adding more cores doesn't really help.