Live data from Hacker News

Viewing profile — deegu

deegu

HN member
Joined
Sat, Jul 04, 2015, 7:55 AM UTC
HN karma
2
Public activity
4 items

About deegu

No profile information was provided.

Recent public activity

  1. comment
    Comment #47723773

    Perhaps. Then again, if your target is to reduce dram refresh induced latency, you might not have time to prefetch either.

  2. comment
    Comment #47719917

    This might be useful in a case where a small lookup or similar is often pushed out from cache such that lookups are usually cold. Yet lookup data might by small enough to not cause…

  3. comment
    Comment #14309867

    CPU frequency scaling can also lead to somewhat unintuitive results. On few occasions I've seen CPU load % increasing significantly after code was optimized. Optimization was still…

  4. comment
    Comment #9829599

    if you run it with luajit -jv primes.lua you'll see NYIs about math.mod not implemented. Replacing math.mod(n, i) with (n % i) gives roughly 9.4x performance. EDIT: luajit version …