1
vote
Language showdown: Lazy (aka short-circuit) evaluation for And and Or applied to a list.
In common lisp, you have exactly this facility
(every #'f '(2 3 4))
and similarly for some, notevery, notany
the iteration macro loop provides similar shor …
3
votes
Speeding Up Python
People have given some good advice, but you have to be aware that when high performance is needed, the python model is: punt to c. Efforts like psyco may in the future help a bit, but python just …
14
votes
What optimizations are OK to do right away?
I think you're looking at this the wrong way. The point of avoiding premature optimization isn't to avoid optimizing, it's to avoid the mindset you can fall into.
Write your algorithm in t …
8
votes
How important is optimization?
Optimization is almost tautologically a tradeoff: you gain runtime efficiency at the cost of other things (readability, maintainability, flexibility, compile times, etc.). As such, it's really nev …
2
votes
Should we still be optimizing “in the small”?
Don't try to guess what your compiler is doing. If you've already determined that you need to optimize something at this level, isolate that bit and look at the generated assembly. If you can see …
2
votes
When to switch from unordered lists to sorted lists ? [optimization]
chmike, this really sounds like the sort of thing you want to do first the simpler way, and see how it behaves. Any sort of GPU voxelization approach is pretty fragile to system details once you g …
