by pncnmnp on 9/22/24, 5:47 AM with 4 comments
by sameoldtune on 9/26/24, 4:54 PM
In my humble opinion as a volunteer educator, algorithms are already very complicated and students being introduced to them don’t need to concern themselves with this stuff at the same time.
by jpollock on 9/26/24, 5:18 PM
I just spent a week shaving 98% off of the latency in a single RPC call by going from O(N^2) to O(1). Data locality is not a problem I have. :)
by kmoser on 9/26/24, 7:00 PM
I wonder whether an optimizing compiler can detect and optimize the sequential writes of the same values, possibly by replacing them with something like a blitter. It would be interesting to see the difference in speed if the data to be written was random, rather than the same value (1.0) every time.
by abirch on 9/26/24, 5:18 PM