frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Is there any offline meeting apps?

1•sanxxit•32s ago•0 comments

How a Java program for finding a second Earth evolved over 23 years

https://www.planetensuche.de/en/entwicklerstory.html
1•Marfir•2m ago•0 comments

Three Years with Abstractionless C

https://replicated.wiki/blog/abc
1•gritzko•3m ago•0 comments

Brownshirt Princess

https://www.openbookpublishers.com/books/10.11647/obp.0003
1•jruohonen•3m ago•0 comments

Install Guide: KDE Neon for a professional digital painter workstation

https://www.davidrevoy.com/article1145/interim-install-guide-kde-neon-user-edition-for-a-professi...
1•majiy•5m ago•0 comments

Ask HN: Why do we snore? And what to do about it?

2•simonebrunozzi•14m ago•0 comments

Little Things Matter: The Lost Key of the Titanic

https://sm4.global-aero.com/articles/little-things-matter-the-lost-key-of-the-titanic/
1•teleforce•15m ago•0 comments

Why birth rates are falling everywhere all at once

https://www.ft.com/content/fba35eca-df3a-4ad6-b42d-eb08eb7c9ad3
1•Anon84•15m ago•1 comments

State of the Fin 2026-05-24

https://jellyfin.org/posts/state-of-the-fin-2026-05-24/
1•Rant423•17m ago•0 comments

The Bus from Izu

https://cinemasojourns.com/2026/05/24/the-bus-from-izu/
1•jjgreen•17m ago•0 comments

Poverty Changes Your Mind-Set (2018)

https://www.chicagobooth.edu/review/how-poverty-changes-your-mind-set
2•downbad_•18m ago•0 comments

The infamous 20 year old MySQL Bug #11472 has been fixed

https://bugs.mysql.com/bug.php?id=11472
1•theanonymousone•19m ago•0 comments

European vs. American Productivity Culture: 10 Key Differences in 2026

2•marian_abz•20m ago•0 comments

Are smartphones to blame for declining birth rates?

https://unherd.com/newsroom/are-smartphones-really-to-blame-for-declining-birth-rates/
1•Anon84•20m ago•0 comments

A Finite Inventory for the Linux Inode

https://loke.dev/blog/linux-inode-exhaustion-metadata-limits
1•ankitg12•21m ago•0 comments

Show HN: Gemini Omni – A curated list of native multimodal guides and showcases

https://github.com/cnemri/awesome-gemini-omni
1•cnemri•22m ago•0 comments

Pope Leo's 'Magnifica humanitas': AI must serve humanity not concentrate power

https://www.vaticannews.va/en/pope/news/2026-05/pope-leo-xiv-encyclical-magnifica-humanitas-ai.html
1•layer8•23m ago•0 comments

Small Model, Big Brain: The 27B Parameter Model Is the New King of Code

https://beeble.com/en/blog/small-model-big-brain-why-the-27-billion-parameter-model-is-the-new-ki...
2•Akamant•23m ago•0 comments

Pathname lookup – The Linux Kernel documentation

https://docs.kernel.org/filesystems/path-lookup.html
1•ankitg12•23m ago•0 comments

Digital sovereignty, the musical: One engineer's crusade against hyperscalers

https://www.theregister.com/offbeat/2026/05/25/digital-sovereignty-the-musical-one-engineers-biza...
1•beardyw•23m ago•0 comments

Akasxh/gpucheck: pytest for GPU kernels

https://github.com/Akasxh/gpucheck
1•ankitg12•25m ago•0 comments

Every RAG-based localization pipeline has the same blind spot

https://lingo.dev/en/engineering/rag-localization-glossary-retrieval
1•maxpr•31m ago•0 comments

The AI-Native Developer – Queue

https://spawn-queue.acm.org/doi/10.1145/3807961
2•rbanffy•32m ago•0 comments

Europe Braces for Record-Breaking Late May Heatwave

https://www.severe-weather.eu/global-weather/heat-dome-europe-heatwave-may-summer-2026-forecast-mk/
2•cromka•41m ago•0 comments

Anthropic's 'Mythos 1' Keeps Appearing Despite Restricted Access Claims

https://firethering.com/claude-mythos-anthropic-claude-code-public-release/
1•steveharing1•42m ago•0 comments

Magnifica Humanitas (Encyclical Letter)

https://www.vatican.va/content/leo-xiv/en/encyclicals/documents/20260515-magnifica-humanitas.html
31•theletterf•42m ago•7 comments

Show HN: An open-source, interactive AI engineering syllabus (1,100 papers)

1•PoppingPixel•43m ago•1 comments

No Linux support on free version of Vivado 2026.1

https://www.amd.com/en/products/software/adaptive-socs-and-fpgas/vivado/vivado-licensing-options....
1•birdculture•44m ago•0 comments

Successful Launch Spurs China Toward Crucial First for Moon Landing

https://www.sciencealert.com/successful-launch-spurs-china-toward-crucial-first-for-moon-landing
2•ColinWright•46m ago•0 comments

Exploring the Therapeutic Benefits of Pranayama: A Systematic Review

https://pmc.ncbi.nlm.nih.gov/articles/PMC7336946/
1•rramadass•51m ago•0 comments
Open in hackernews

Zig and GPUs

https://alichraghi.github.io/blog/zig-gpu/
57•Cloudef•1y ago

Comments

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