Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Claude Opus 5.5(anthropic.com)
    341comments
  2. OpenAI GPT–6 Astra breaks Enigma message that has resisted solution since 2005(cryptocellar.org)
    277comments
  3. Claude Opus 5.5 Intelligence, Performance and Price Analysis(artificialanalysis.ai)
    4comments
  4. 16-bit Intel 8088 chip(allpoetry.com)
    5comments
  5. WordPress: Unauthenticated path traversal leading to conditional RCE(github.com/wordpress)
    11comments
  6. Launch HN: Coverage Cat (YC S22) – Umbrella insurance via your personal agent(coveragecat.com)
    discuss
  7. OpenAI is well positioned to fast-follow Jev(arcturus-labs.com)
    106comments
  8. Writing Rust code that's fast by asking agents to make the code faster(minimaxir.com)
    18comments
  9. Apple has added persistent 'ads' to iOS, and it's driving users crazy(techradar.com)
    267comments
  10. Show HN: AI·rete·RAG – a Rete rule engine decides, RAG explains why(ai-rete-rag.com)
    discuss
  11. Show HN: Drop – A rootless Linux sandbox with gVisor support(droprun.sh)
    32comments
  12. Solitaire Alone Together(solitairealonetogether.com)
    16comments
  13. Can gzip be a language model?(nathan.rs)
    124comments
  14. AMD's random number generator can't generate a 0?(flatassembler.net)
    153comments
  15. There's a high chance of devices being sold with GrapheneOS preinstalled in 2027(grapheneos.social)
    2comments
  16. MiMo v2.6(xiaomi.com)
    462comments
  17. Spymarks, not Watermarks(brand.io)
    155comments
  18. Show HN: InstinctFlash – Run 5B world-action models in real time on Jetson Thor(github.com/general-instinct)
    discuss
  19. One Minute Park(oneminutepark.tv)
    discuss
  20. Teleoperated Humans(jefftk.com)
    34comments
  21. Aging may be a program, not a breakdown(quantamagazine.org)
    40comments
  22. Meta’s Muse has a serious 0-day(arstechnica.com)
    31comments
  23. I asked Meta’s Muse for its filesystem and it sent me 6.8GB(mouse.dev)
    99comments
  24. Relativistic raytracing(publish.obsidian.md)
    1comments
  25. MUNI Heritage Weekend in San Francisco(lawrence.lu)
    20comments
  26. The Economics of Open-Weight Inference(ornn.com)
    7comments
  27. Xbox continues its “reset” with dramatic restructuring(arstechnica.com)
    34comments
  28. Transformers Explained Visually(poloclub.github.io)
    84comments
  29. Vacate a drone restriction that criminalized recording immigration agents(eff.org)
    10comments
  30. I said no and Apple said yes(dbushell.com)
    527comments

Show HN: InstinctFlash – Run 5B world-action models in real time on Jetson Thor

7 pointsby 2h agogithub.com
0 comments
Hey HN, Guanming here, cofounder of General Instinct. We just released InstinctFlash, a high-performance serving framework for robotics models. It’s licensed under AGPL-3.0.

On Jetson Thor, we see speedups about 1.2x to 7.9x from runtime optimizations alone and up to 33.78x for LingBot-VA when we combine those runtime optimizations with a distilled few-step diffusion scheduler, going from the original 25 visual / 50 action steps to 2 / 4 steps. Across 50 Robotwin2.0 tasks, we evaluated 1,153 episodes per configuration, LingBot-VA with InstinctFlash at 2 visual / 4 action steps achieved a 90.5% success rate, compared with 92.1% for the baseline at 25 visual / 50 action steps.

Here’s an optimized 5B world action model, running in real time on a Jetson Thor: https://youtu.be/nku65iyL5Fw

InstinctFlash currently supports 8 VLA / world-action model families, including pi0.5 and NVIDIA Cosmos Policy, across RTX 4090 / 5090 and Jetson Thor.

Just give it your fine-tuned checkpoint and InstinctFlash handles the rest, exposing the accelerated model through a Python runtime or an OpenPI-compatible WebSocket server.

We started working on this because we kept running into the same problem while deploying robot policies, the models were getting much better, but inference was often way too slow for the control loop we actually wanted.

For pi0.5, mixed-precision GEMMs and CUDA graphs speed up computation and reduce launch overhead. For Cosmos, caching avoids redundant computation across diffusion steps. World-action models’ diffusion denoising step depends on the previous one which motivated our work on few-step distillation.

Right now, InstinctFlash contains 6 aspects of optimization.

- Graph: CUDA graph capture, memory planning and separating prefill from repeated execution.

- Cache: Reusing KV and conditioning state across diffusion steps and prediction calls.

- Attention: Specialized attention paths for different model architectures.

- Kernels: Fused operations and kernels tailored to specific backends and tensor layouts.

- Precision: FP8 and mixed-precision execution.

- Model: Few-step distillation for diffusion and action generation.

Teams at Samsung, Siemens, and other robotics startups have used InstinctFlash for model acceleration on VLAs, WAMs, and diffusion-based world models. Now we are opening up access to you.

Feel free to try it here: https://github.com/General-Instinct/InstinctFlash

More implementation details and benchmarks: https://general-instinct.com/blog/instinctflash-edge-inferen...

Would love to hear your feedback!

A quiet thread, for now.Start the conversation on HN ↗