Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Breaking Up with Google Play: Why Conversations Is Now Free (gultsch.de)
    185comments
  2. PipePipe: NewPipe hard fork implementing SponsorBlock (github.com/infinityloop1308)
    43comments
  3. Fifteen years later, the Apple Cards origin story (lexontech.org)
    39comments
  4. The Lost Atomic Update on Loongson CPU (jia.je)
    —discuss
  5. Show HN: A Claude Code skill to analyze your chess games (github.com/brumar)
    18comments
  6. Modern Object Pascal Introduction for Programmers – Castle Game Engine (castle-engine.io)
    29comments
  7. Revealing the details of how OpenAI agents hacked Hugging Face (swarmtraces.org)
    398comments
  8. Reflections on 1,000 Days of Math (gmays.com)
    8comments
  9. I'm the Mom in That Viral Giants Clip. Let Me Tell You About My Husband (themomoftheyear.substack.com)
    17comments
  10. Analyzing Frontier Model Progress with My Favourite Game: Prince of Persia (blog.priyan.in)
    18comments
  11. We're gonna need a lot more mathematicians (terrytao.wordpress.com)
    367comments
  12. Plan mode is dead (aymannadeem.com)
    426comments
  13. Floci: Locally emulating any cloud service (floci.io)
    22comments
  14. Make Claude your assistant in excalidraw (tangled.org)
    2comments
  15. Ollaya – Ollama for open-source, Jev-style decision models (ollaya.dev)
    134comments
  16. Banks and Credit Unions to Team Up Against Apple Pay Fees (macrumors.com)
    2comments
  17. Is your Postgres migration safe or not safe? (safenotsafe.dev)
    31comments
  18. New Satellite Engine Could Use Earth's Atmosphere to Stay in Orbit Indefinitely (scitechdaily.com)
    2comments
  19. 16GB iPod Nano 3G Upgrade (tuckerosman.com)
    12comments
  20. Parsing Expression Grammar vs. Regexes: Building Org Parser in Lisp, Export HTML (jointhefreeworld.org)
    14comments
  21. Show HN: Jev Plays Pokémon Red (jev-pokemon.vercel.app)
    94comments
  22. A single function Jev-like wrapper for LLMs, including vision models (allanrbo.blogspot.com)
    38comments
  23. What even is an OS now? (sockpuppet.org)
    381comments
  24. Calculating atmospheric drag on satellites for a Cubesat [pdf] (osti.gov)
    7comments
  25. Ask HN: Who's still keeping a DOS machine up because the business depends on it?
    212comments
  26. Gravity seems holographic. What does that mean for reality? (quantamagazine.org)
    197comments
  27. Plunging test scores are a slow-moving catastrophe (economist.com)
    123comments
  28. The Murky History of Soviet-Born Tetris (mitpress.mit.edu)
    18comments
  29. Scientists build most accurate atomic clock (phys.org)
    23comments
  30. Jury finds Facebook liable for deceiving users in Cambridge Analytica case (cbsnews.com)
    94comments

Turns out the AI CUDA Engineer achieved 100x speedup by hacking the eval script

33 pointsby 1y agotwitter.com
3 comments
1y agoHN ↗

Ah, reinforcement learning.

Edit: explaining it in text

they have run the equivalent of

  expected_output = torch.tril(torch.matmul(A,B))

  ai_output = ai()

In the nested torch expression above for the expected output, there is an intermediate value (the matmul). The backing memory for this is returned to torch after the entire expression is computed.

The model's code which runs directly afer this then requested memory of the same shape (torch.like()). Torch has dutifully returned the block it just reclaimed (containing the expected output) without zeroing it. And so the model has the answer.

Pretty crazy that this was the code it converged on regardless of the fact that it invalidates the original claim.

1y agoHN ↗

Gaming a kpi to make it look like it accomplished a ton of work without doing anything? That's not an AI CUDA engineer, that's an AI middle manager!