Skip to content

Python Optimizations #1

@grantjenks

Description

@grantjenks

You can make Python about 2x faster with these changes:

values = [value % maxInt for value in xrange(warmUpIterations)]
values = [(value, value * 2, value + 1) for value in values]
map_get = map.get

# for i in xrange(warmUpIterations):
#     num1 = i % maxInt
#     num2 = num1 * 2
#     num3 = num1 + 1
for num1, num2, num3 in values:
    map[num1] = num2
    value = map_get(num3)
    # if value:
    #     # Make sure we do something with the result so that it is not optimized away
    #     sum += value

What changed:

  1. Move the math out of the loop. You want to test hash table performance not integer math.
  2. Replace map.get with map_get to avoid the method lookup.
  3. Skip summing values. Python's dead-code optimizations are not very aggressive. The loop will stay.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions