ultrarand VS icfpc2019

Compare ultrarand vs icfpc2019 and see what are their differences.

ultrarand

a demo of random number generation in java, and clojure via performance optimization (by joinr)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
ultrarand icfpc2019
2 2
4 17
- -
5.0 0.0
over 3 years ago almost 5 years ago
Clojure Clojure
Eclipse Public License 2.0 -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

ultrarand

Posts with mentions or reviews of ultrarand. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-03-23.
  • Making the LinkedIn experimentation engine 20x faster
    4 projects | /r/Clojure | 23 Mar 2021
    There's a pretty interesting discussion on primitive arrays where the user is trying to match java performance exactly with an array-based thing that's simple enough to port, but is still a hair off due to clojure's default toward longs even for indexing (java wants int for array indices, so casts are necessary). Ended up getting identical performance using JiSE here, although the clojure variant with uncheckedIntCasts was fairly close (just not "equivalent to Java" per the common trope).
  • Advent of Code 2020 Day 23 Crab Cups in Clojure (optimizing runtime from 10,000 years to 30 minutes)
    3 projects | /r/Clojure | 1 Jan 2021
    There's an intersting thread on zulip regarding getting identical performance with java arrays. Normally if you're using unchecked math and working with primitives, then you should get with a hair of java (not 2-3x slower). The remaining differences are due to uncheckedIntCast since Clojure forces longs for indices and java wants ints. The difference is I'm in the realm of nanos but is there. You can eliminate it with custom bytecode like with the JISE library which is fairly painless. Example .

icfpc2019

Posts with mentions or reviews of icfpc2019. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-01-12.
  • Advent of Clojure - looking for feedback
    5 projects | /r/Clojure | 12 Jan 2023
    Regarding hashing, custom hash functions even for records (if all fields are longs for example) can help substantially if you are hashing points some notes here. Even then, depending on what you are doing, you may be better off using a primitive numeric representation and a dense collection (e.g. a primitive array) since the mechanical sympathy may be substantial. It is also possible to do well using nested maps (particularly for memoization) when the pieces of a compound key are already trivially hashed. E.g. clojure.core/memoize just defines a varargs wrapper around a function and caches the sequence of args in a map. For earlier reasons, this is a poor strategy for many functions and performance can be substantially improved (e.g. for a 1 or 2 arg function of numbers or keys or strings even) if we defined fixed arity paths that store keys in nested maps instead of hashing complex collections.
  • Making the LinkedIn experimentation engine 20x faster
    4 projects | /r/Clojure | 23 Mar 2021
    There's a worked example of optimizing an ICFPC2019 entry here where the readme goes through a bevy of techniques and observations.

What are some alternatives?

When comparing ultrarand and icfpc2019 you can also consider the following projects:

performancepaper - A reproducible, open examination of the paper "A performance comparison of Clojure and Java" by Gustav Krantz

clj-fast - Unpredictably faster Clojure

clojure - The Clojure programming language

AdventOfCode2022 - My solutions for AoC 2022