Changes between Version 12 and Version 13 of PossibleOptimizationAreas
- Timestamp:
- 01/04/09 15:53:21 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PossibleOptimizationAreas
v12 v13 12 12 * As of changeset:2108 {{{x.sum()}}} is 2x slower than {{{add.reduce(x)}}} for small arrays. 13 13 14 * {{{pixels[:,:,:] = r, g, b}}} is 20x slower than copying from a equally sizedarray. {{{pixels = zeros((600, 600, 3), 'uint8'); r = g = b = 255}}}14 * {{{pixels[:,:,:] = r, g, b}}} is 20x slower than copying from another large array. {{{pixels = zeros((600, 600, 3), 'uint8'); r = g = b = 255}}}
