https://hero.handmade.network/episode/code/day049/#5201
In the above Q&A Casey says that floats are two times faster than doubles, because we can do double the amount of operations on them in the same # of cycles. On Day 49, when this question was asked, he hadn't yet used SIMD instrinsics, but is this what he was referring to by the 2x gain in speed? In other words, at the time of this statement simply using a float instead of a double did not actually garner double the speed, rather Casey is saying that he prefers to use floats as a default because they allow for this optimization to happen. Is that right?