frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

On Thinking Machines

https://www.sicpers.info/2026/03/on-thinking-machines/
1•ingve•3m ago•0 comments

FreeBSD 14.4-Release Announcement

https://www.freebsd.org/releases/14.4R/announce/
2•vermaden•4m ago•0 comments

Pi Is Vim for Agentic Coding

https://www.hansschnedlitz.com/writing/2026/03/08/pi-is-vim-for-agentic-coding
1•pretext•4m ago•0 comments

DigiKam 9.0.0 Is Released

https://www.digikam.org/news/2026-03-08-9.0.0_release_announcement/
2•santix•4m ago•0 comments

Why is email so resilient as a technology?

2•noemit•4m ago•0 comments

OpenClaw Did Not Just Go Viral in China, It Solved a Structural Problem

https://hellochinatech.com/p/openclaw-china-ai-stack
1•pretext•4m ago•0 comments

Apple Now Makes One in Four iPhones in India

https://www.macrumors.com/2026/03/10/apple-makes-one-four-iphones-india/
2•tosh•6m ago•0 comments

Visualizing Ukkonen's Suffix Tree Algorithm

https://www.abahgat.com/blog/visualizing-ukkonens-algorithm/
1•gsky•6m ago•0 comments

Google Trends: "how to install Linux" is going viral

https://old.reddit.com/r/BuyFromEU/comments/1rpqx08/google_trends_how_to_install_linux_is_going_v...
2•doener•7m ago•1 comments

Deriving Type Erasure

https://david.alvarezrosa.com/posts/deriving-type-erasure/
1•dalvrosa•8m ago•1 comments

I Open-Sourced the Biological Operating System (Destroys AlphaFold) OS Always

https://github.com/ctibedoJ/KateFarms/blob/0b63882e9df3c81447db19040c4a80420b20acbf/V7.1
1•GeometryKernel•9m ago•1 comments

FreeNeta – Lightweight PROFINET discovery tool written in Python

https://github.com/ArnoVanbrussel/freeneta
1•avbxl•9m ago•1 comments

ProPublica Wins Lawsuit over Access to Court Records in U.S. Navy Cases

https://www.propublica.org/article/navy-court-records-ruling-first-amendment
1•giuliomagnifico•10m ago•0 comments

I'd had several careers but no degree – then I became a palaeontologist at 62

https://www.theguardian.com/lifeandstyle/2026/mar/09/a-new-start-after-60-career-palaeontologist
1•mellosouls•10m ago•0 comments

For 25 years, medical literature published invented clinical cases

https://peakd.com/hive-196387/@davideownzall/for-25-years-medical-literature-published-invented-c...
1•robtherobber•13m ago•0 comments

Iran war shows Green Deal 'fundamental' to EU security

https://www.politico.eu/article/eu-green-deal-energy-security-iran-war/
3•vrganj•19m ago•0 comments

PEP 827 – Type Manipulation

https://peps.python.org/pep-0827/
1•arusahni•20m ago•0 comments

Volkswagen to cut 50k jobs as China offers cheaper electric cars

https://www.telegraph.co.uk/business/2026/03/10/volkswagen-to-cut-50000-jobs-after-failed-bet-on-...
2•emzo•21m ago•0 comments

Show HN: Iran War Clock

https://www.iranwarclock.com/
1•martialg•21m ago•0 comments

Cold DMs don't work anymore. Here's what got me my first users

1•deep1283•22m ago•0 comments

AI C-Suite – Chat with a fictional leadership team (1-on-1 or group chat)

https://99helpers.com/tools/csuite-advisor
1•nickk81•25m ago•1 comments

Most B2B Lead Generation Tools Create Contacts, Not Customers

1•lakshmirk•26m ago•0 comments

Show HN: A mission-based game to help students apply math in real life

https://www.owsterlabs.com/module/eagle-in-the-sky/
1•firepegasus11•26m ago•0 comments

Who Killed German Nuclear?

https://zionlights.substack.com/p/who-really-killed-german-nuclear
1•mpweiher•26m ago•2 comments

Removing recursion via explicit callstack simulation

https://jnkr.tech/blog/removing-recursion
1•gsky•28m ago•0 comments

Amygdala Research: Prompt topic, get footnoted report from experts in seconds

https://amygdala.eu/research
1•JoranCornelisse•29m ago•0 comments

Gemini Exporter – a Chrome extension to export Gemini chats

1•nongquy•33m ago•0 comments

Understanding React Native's new architecture

https://www.z1.digital/blog/react-native-s-new-architecture-a-paradigm-shift
1•ClarisaGuerra•34m ago•0 comments

IronPE – Minimal Windows PE manual loader written in Rust

https://github.com/iss4cf0ng/IronPE
1•iss4cf0ng•34m ago•0 comments

Nasdaq partners with Kraken to distribute tokenized stocks globally

https://www.coindesk.com/business/2026/03/09/nasdaq-and-kraken-are-teaming-up-to-let-you-trade-to...
1•giuliomagnifico•36m ago•0 comments
Open in hackernews

Zig and GPUs

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

Comments

LegNeato•10mo ago
See also https://github.com/Rust-GPU/rust-gpu and https://github.com/rust-gpu/rust-cuda
ladyanita22•10mo 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•10mo ago
Microsoft indicated they are switching to SPIR-V from DXIL: https://devblogs.microsoft.com/directx/directx-adopting-spir...
skywal_l•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo ago
The Zig compiler can compile C, though.