frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Keep Android Open

http://keepandroidopen.org/
1586•LorenDB•10h ago•457 comments

From VS Code to Helix

https://ergaster.org/posts/2025/10/29-vscode-to-helix/
77•todsacerdoti•1h ago•34 comments

Kafka is Fast – I'll use Postgres

https://topicpartition.io/blog/postgres-pubsub-queue-benchmarks
23•enether•49m ago•0 comments

I made a 10¢ MCU Talk

https://www.atomic14.com/2025/10/29/CH32V003-talking
17•iamflimflam1•42m ago•1 comments

AWS to bare metal two years later: Answering your questions about leaving AWS

https://oneuptime.com/blog/post/2025-10-29-aws-to-bare-metal-two-years-later/view
305•ndhandala•3h ago•225 comments

Eye prosthesis is the first to restore sight lost to macular degeneration

https://med.stanford.edu/news/all-news/2025/10/eye-prosthesis.html
39•gmays•6d ago•2 comments

Who needs Graphviz when you can build it yourself?

https://spidermonkey.dev/blog/2025/10/28/iongraph-web.html
320•pdubroy•9h ago•55 comments

What we talk about when we talk about sideloading

https://f-droid.org/2025/10/28/sideloading.html
1359•rom1v•20h ago•537 comments

Recreating a Homebrew Game System from 1987

https://alex-j-lowry.github.io/z80tvg.html
13•voxadam•1h ago•0 comments

ChatGPT's Atlas: The Browser That's Anti-Web

https://www.anildash.com//2025/10/22/atlas-anti-web-browser/
564•AndrewDucker•4d ago•235 comments

Tips for stroke-surviving software engineers

https://blog.j11y.io/2025-10-29_stroke_tips_for_engineers/
355•padolsey•11h ago•120 comments

uBlock Origin Lite Apple App Store

https://apps.apple.com/in/app/ublock-origin-lite/id6745342698
278•mumber_typhoon•10h ago•133 comments

Glyph: Scaling Context Windows via Visual-Text Compression

https://github.com/thu-coai/Glyph
8•foruhar•2d ago•1 comments

SpiderMonkey Garbage Collector

https://firefox-source-docs.mozilla.org/js/gc.html
53•sebg•5h ago•1 comments

Aggressive bots ruined my weekend

https://herman.bearblog.dev/agressive-bots/
109•shaunpud•4h ago•47 comments

Mom says son asked Tesla's Grok AI bot about soccer; told him to send nudes

https://www.cbc.ca/news/investigates/tesla-grok-mom-9.6956930
21•choult•30m ago•17 comments

EuroLLM: LLM made in Europe built to support all 24 official EU languages

https://eurollm.io/
728•NotInOurNames•23h ago•546 comments

Show HN: Learn German with Games

https://www.learngermanwithgames.com/
31•predictand•3h ago•13 comments

Berkeley Out-of-Order RISC-V Processor (Boom) (2020)

https://docs.boom-core.org/en/latest/sections/intro-overview/boom.html
14•Bogdanp•2h ago•1 comments

Continuous Nvidia CUDA Profiling in Production

https://www.polarsignals.com/blog/posts/2025/10/22/gpu-profiling
66•brancz•1w ago•8 comments

Tinkering is a way to acquire good taste

https://seated.ro/blog/tinkering-a-lost-art
391•jxmorris12•17h ago•279 comments

Samsung's $2000 smart fridges are getting ads

https://www.ghacks.net/2025/10/29/samsungs-2000-smart-fridges-are-getting-ads/
18•speckx•53m ago•3 comments

UIs Are Not Pure Functions of the Model – React.js and Cocoa Side by Side (2018)

https://blog.metaobject.com/2018/12/uis-are-not-pure-functions-of-model.html
64•PKop•4d ago•30 comments

New attacks are diluting secure enclave defenses from Nvidia, AMD, and Intel

https://arstechnica.com/security/2025/10/new-physical-attacks-are-quickly-diluting-secure-enclave...
26•voxadam•1h ago•22 comments

Grammarly rebrands to 'Superhuman,' launches a new AI assistant

https://techcrunch.com/2025/10/29/grammarly-rebrands-to-superhuman-launches-a-new-ai-assistant/
42•coloneltcb•1h ago•16 comments

Boring is what we wanted

https://512pixels.net/2025/10/boring-is-what-we-wanted/
400•Amorymeltzer•18h ago•231 comments

Wheeled Inverted Pendulum Model

https://scaron.info/robotics/wheeled-inverted-pendulum-model.html
21•pillars•4d ago•6 comments

Apple will phase out Rosetta 2 in macOS 28

https://developer.apple.com/documentation/apple-silicon/about-the-rosetta-translation-environment
245•summarity•5d ago•258 comments

Generative AI Image Editing Showdown

https://genai-showdown.specr.net/image-editing
288•gaws•17h ago•61 comments

Wacl – A Tcl Distribution for WebAssembly

https://github.com/ecky-l/wacl
66•shakna•10h ago•2 comments
Open in hackernews

Continuous Nvidia CUDA Profiling in Production

https://www.polarsignals.com/blog/posts/2025/10/22/gpu-profiling
66•brancz•1w ago

Comments

gnurizen•1h ago
Author here, would be happy to field any questions or feedback!
sirhcm•1h ago
Does the profiler read any of the GPU's performance counters? Would be super cool to have an open source tool that can capture the same data nsight compute does.
gnurizen•38m ago
This profiler is focused on kernel execution but we do scrape high level metrics (https://www.polarsignals.com/blog/posts/2025/06/04/latest-in... which is based on https://github.com/polarsignals/gpu-metrics-agent). What performance counters in particular were you interested in?
sirhcm•29m ago
Cache hit rate is probably the most immediately useful. Although given that this is for always-on profiling maybe this project isn't as geared towards optimizing kernels as I originally thought? In theory reading the counters should be low overhead though.
embedding-shape•50m ago
This "low-overhead always on GPU profiler" seems really cool and useful, but we're not using Kubernetes for anything, and the instructions for how to use it seems to only include Kubernetes. Is there a way of running this without Kubernetes?
gnurizen•47m ago
Yeah the quickstart guide covers docker, k8s and "raw" binary options:

https://www.parca.dev/docs/quickstart/

knlb•38m ago
Thanks for the post, this is pretty cool!

I feel like I've seen Cupti have fairly high overhead depending on the cuda version, but I'm not very confident -- did you happen to benchmark different workloads with cupti on/off?

---

If you're taking feature requests: a way to subscribe to -- and get tracebacks for -- cuda context creation would be very useful; I've definitely been surprised by finding processes on the wrong gpu and being easily able to figure out where they came from would be great.

I did a hack by using LD_PRELOAD to subscribe/publish the event, but never really followed through on getting the python stack trace.

gnurizen•34m ago
CUPTI is kind of a choose your own adventure thing, as you subscribe to more stuff the overhead goes up, this is kind of minimalist profiler that just subscribes to the kernel launches and nothing else. Still to your point depending on kernel launch frequency/granularity it may be higher overhead than some would want in production, we have plans to address that with some probabilistic sampling instead of profiling everything but wanted to get this into folks hands and get some real world feedback first.