frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Hardening the C++ Standard Library at scale

https://queue.acm.org/detail.cfm?id=3773097
1•ndesaulniers•3m ago•0 comments

Show HN: Wolfrominoes

https://demos.samgentle.com/wolfrominoes/
1•sgentle•9m ago•0 comments

First Human Victim of H5N5

https://komonews.com/news/local/h5n5-avian-influenza-cdc-grays-harbor-county-resident-dies-from-c...
1•pontifk8r•12m ago•0 comments

Advice for Workshop Attendees

https://vishalblog.substack.com/p/advice-for-workshop-attendees
1•eatitraw•17m ago•0 comments

Tracking AI Search Traffic: Why Google Analytics Fails

https://www.tryzenith.ai/blog/tracking-ai-search-traffic-server-logs
1•manveerc•22m ago•0 comments

Cara Memperbaiki Nama Tiket Pesawat Batik Air

1•busaserba•23m ago•2 comments

Cryptographers Held an Election. They Can't Decrypt the Results

https://www.nytimes.com/2025/11/21/world/cryptography-group-lost-election-results.html
7•FabHK•39m ago•1 comments

Charter of Democratic Pansystemism:Replacing the Constitution with Cybernetics [pdf]

https://files.catbox.moe/raqnfv.pdf
1•ytisnotatube•45m ago•0 comments

Titanic Passenger's Watch Sells for Record £1.78M at Auction

https://vechron.com/2025/11/titanic-isidor-straus-watch-auction-record-1-78-million/
11•ashishgupta2209•46m ago•1 comments

The Definitive Classic Mac Pro (2006-2012) Upgrade Guide

https://blog.greggant.com/posts/2018/05/07/definitive-mac-pro-upgrade-guide.html
1•surprisetalk•47m ago•0 comments

Space Type Generator

https://spacetypegenerator.com/stripes
1•surprisetalk•48m ago•0 comments

How to make precise sheet metal parts (photochemical machining) [video]

https://www.youtube.com/watch?v=bR9EN3kUlfg
1•surprisetalk•48m ago•0 comments

How to Long Game

https://www.ystrickler.com/how-to-long-game/
1•surprisetalk•48m ago•0 comments

How Antidepressants Work [video]

https://www.youtube.com/watch?v=xyAoMtFb0Rg
1•ckw•49m ago•0 comments

Unusual circuits in the Intel 386's standard cell logic

https://www.righto.com/2025/11/unusual-386-standard-cell-circuits.html
12•Stratoscope•52m ago•0 comments

There are nine wolves inside of you

https://usefulfictions.substack.com/p/there-are-nine-wolves-inside-of-you
1•eatitraw•54m ago•0 comments

Ask HN: Are You Lost?

2•Topgamer7•57m ago•1 comments

MLP OC Maker – AI Tool for Creating My Little Pony–Style Original Characters

https://aiocmaker.com/oc-maker/mlp-oc-maker
1•xiaoshumiao•58m ago•1 comments

MCP Apps just dropped (OpenAI and Anthropic collab) and I think this is huge

http://blog.modelcontextprotocol.io/posts/2025-11-21-mcp-apps/
1•mercury24aug•59m ago•1 comments

Why your speedometer is lying to you (in a good way)

https://sidecar.clutch.engineering/news/2025/11/22/Why-your-speedometer-is-lying-to-you/
1•featherless•1h ago•0 comments

A Detailed M&A Journey Selling My Company

https://blog.thefoundermanual.com/p/my-m-a-journey-selling-classhook
1•adeeb•1h ago•0 comments

Byju's founder to appeal U.S. court order to pay over $1B in bankruptcy case

https://techcrunch.com/2025/11/22/byjus-founder-to-appeal-u-s-court-order-to-pay-over-1b-in-bankr...
1•jimexp69•1h ago•0 comments

Serenity, Courage, Wisdom and AI

https://thehumanspirit.substack.com/p/serenity-courage-wisdom-and-ai
1•OgsyedIE•1h ago•0 comments

Show HN: Emoji Translator

https://emojitranslator.cc
1•HenryZheng99•1h ago•0 comments

Compute Forecast (AI 2027)

https://ai-2027.com/research/compute-forecast
1•jxmorris12•1h ago•0 comments

Demis Hassabis Reveals Google's 'Secret' Behind Benchmark-Topping Gemini 3

https://officechai.com/ai/demis-hassabis-reveals-googles-secret-behind-benchmark-topping-gemini-3/
1•salkahfi•1h ago•0 comments

New BoM Site Totalled $96M

https://www.smh.com.au/politics/federal/total-bill-for-bom-s-new-website-came-in-at-96-million-20...
1•razodactyl•1h ago•1 comments

Newest Starship booster is significantly damaged during testing

https://arstechnica.com/space/2025/11/newest-starship-booster-is-significantly-damaged-during-tes...
1•perihelions•1h ago•0 comments

Jeffrey Epstein's Inbox

https://epsteininbox.com/
1•hgarg•1h ago•2 comments

Show HN: I recreated fuse wallets app onboarding in SwiftUI and made it reusable

https://github.com/georgecartridge/FuseAppOnboarding
4•georgecartridge•1h ago•0 comments
Open in hackernews

Zig and GPUs

https://alichraghi.github.io/blog/zig-gpu/
57•Cloudef•7mo ago

Comments

LegNeato•7mo ago
See also https://github.com/Rust-GPU/rust-gpu and https://github.com/rust-gpu/rust-cuda
ladyanita22•7mo ago
Surprisingly, it seems this project just supports Spir-V and PTX, but not DXIL or AMDGCN.

I say surprisingly, because I'd expect Rust support to be more mature than Zig's.

lostmsu•7mo ago
Microsoft indicated they are switching to SPIR-V from DXIL: https://devblogs.microsoft.com/directx/directx-adopting-spir...
skywal_l•7mo ago
I am a complete noob in GPU but is AMDGCN the older generation with the new one being RDNA? If you generate a binary for AMDGCN, will it run on the newest cards?

Also, I though that these GPU ISAs were "proprietary". I wonder how reliable the binary generation can be.

AliChraghi•7mo ago
AMD ISAs are changing for almost every generation so LLVM[1] continues to keep the architecture name "amdgcn" and handle the variation based on the model flag (e.g., -mcpu=gfx1030 for RDNA2, -mcpu=gfx1100 for RDNA3).

> I though that these GPU ISAs were "proprietary"

PTX spec[2] is publicly available but the actual hardware assembly (SASS) is not. Although i believe Nsight allows you to view it.

1. https://llvm.org/docs/AMDGPUUsage.html#processors

2. https://docs.nvidia.com/cuda/parallel-thread-execution

imtringued•7mo ago
If LLVM can target AMD GPUs what exactly prevents AMD and ROCm from supporting all the damn GPUs?

At this point I'm convinced that the real problem with AMD GPUs isn't necessarily the compilers (although they do produce mediocre code) or even the hardware itself, but some crappy C++ driver code that can't handle running graphics and compute at the same time. The datacenter GPUs never had to run graphics in the first place, so they are safe.

slavik81•7mo ago
In my experience, the compiler, compute drivers, and HIP runtime work fine for all modern AMD GPUs. The only parts of the stack that don't run on all GPUs are the math and AI libraries. And that is mostly because AMD isn't building and testing those libraries for unsupported GPUs. The actual work required to enable functional support was straightforward enough that I ported them myself when packaging the libraries for Debian. Though, I had a lot of help on the testing.

See the Debian Trixie Supported GPU list: https://salsa.debian.org/rocm-team/community/team-project/-/...

SomaticPirate•7mo ago
While I admire the work of hobbyists it still looks like C/C++ will be the default until a GPU vender makes the decision to support these libraries.

From my understanding, Vulkan and OpenGL are nice but the true performance lies in the specific toolkits (ie CUDA, Metal).

Wrapping the vendor provided frameworks is liable to break and that isn't tenable for someone who wants to do this on a professional basis.

pjmlp•7mo ago
They also miss that on CUDA's case it is an ecosystem.

Actually it is C, C++, Fortran, OpenACC and OpenMP, PTX support for Java, Haskell, Julia, C#, alongside the libraries, IDE tooling and GPU graphical debugging.

Likewise Metal is plain C++14 plus extensions.

On the graphics side, HLSL dominates, following by GLSL and now slang. There are then MSL, PSSL and whatever NVN uses.

By the way, at GTC NVIDIA announced going all in with Python JIT compilers for CUDA, with feature parity with existing C++ tooling. There is now a new IR for doing array programming, Tile IR.

dismalaf•7mo ago
I don't quite get this comment.

This is supposed to be used in place of CUDA, HIP, Metal, Vulkan, OpenGL, etc... It's targeting the hardware directly so doesn't need to be supported as such.

The site also seems to clearly state it's a work in progress. It's just an interesting blog post...

slowmovintarget•7mo ago
The Zig compiler can compile C, though.