Live data from Hacker News

Viewing profile — psurge

psurge

HN member
Joined
Wed, Mar 14, 2018, 6:06 AM UTC
HN karma
33
Public activity
11 items

About psurge

No profile information was provided.

Recent public activity

  1. comment
    Comment #33761314

    C++17 has std::hardware_destructive_interference_size which you can use in conjunction with alignas to get this behavior, see https://en.cppreference.com/w/cpp/thread/hardware_dest…

  2. comment
    Comment #32684924

    And successfully scaling different peaks requires using different kinds of safety rope. Helpfully, the different ropes all look exactly the same.

  3. comment
    Comment #23863339

    My understanding is that DRAM processes are sufficiently different from logic processes that they tend to get dedicated fabs. So then companies like Apple would have to buy fab tim…

  4. comment
    Comment #20802277

    Does anyone know of any EPYC 7002 servers, preferably single socket ones, that also support EDSFF E1.L SSDs?

  5. comment
    Comment #20493955

    Thanks for pointing this out! I didn't know that C++17 had relaxed this restriction.

  6. comment
    Comment #20493739

    I don't think Node can contain a std::vector , since STL containers cannot have incomplete value types. But maybe I'm misunderstanding you? I think absl::flat_hash_map > would be w…

  7. comment
    Comment #20493554

    Aren't the second and third lines of the insert/search implementations superfluous? Casting root to a boolean will never return false, since it is initialized. The insert implement…

  8. comment
    Comment #18792353

    I probably screwed something up, but here's a 16 line attempt in Python, where the regex specials are limited to . ?: def matches(pattern, s): if len(pattern) == 0: return True c =…

  9. comment
    Comment #17803786

    OK, I just found the FE TDPs listed on the NVidia site (2080 FE: 225W).

  10. comment
    Comment #17803758

    The 2080 TDP seems to be 215W rather than 285W (source: https://www.anandtech.com/show/13249/nvidia-announces-geforc... ). Are you sure the FE TDPs are different from the reference…

  11. comment
    Comment #17348883

    The WorldWide Telescope uses this exact idea: http://www.worldwidetelescope.org/docs/worldwidetelescopepro... There are also other interesting spherical tessellations that could be…