Unrolled small maps

Description

Placeholder for unrolled small maps enhancement (companion for vectors at CLJ-1517).

Environment

None

Activity

Show:

Zach Tellman July 10, 2015 at 5:53 AM

Yes, in some cases significantly so, for three reasons (in rough order of importance):

  • positional constructors, without any need for array instantiation/population

  • short-circuiting equality checks using hash comparisons

  • no iteration on any operation

There are a series of benchmarks at https://github.com/ztellman/cambrian-collections/blob/master/test/cambrian_collections/map_test.clj#L64-L148, which compare operations against maps with both keywords (which don't benefit from the hash comparisons) and symbols (which do). The 7-entry map cases cause the unrolled maps to overflow, so they only exist to test the overflow mechanism.

I've run the benchmark suite on my laptop, and the results are at https://gist.github.com/ztellman/961001e1a77e4f76ee1d. Some notable results:

The rest of the benchmarks are marginally faster due to unrolling, but most of the performance benefits are from the above behaviors. In a less synthetic benchmark, I found that Cheshire JSON decoding (which is 33% JSON lexing and 66% data structure building) was sped up roughly 30-40%.

Andy Fingerhut July 10, 2015 at 4:59 AM

Is there an expectation that these would perform better that PersistentArrayMap?

Details

Assignee

Reporter

Priority

Affects versions

Created December 8, 2014 at 7:09 PM
Updated May 16, 2017 at 4:58 AM

Flag notifications