frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The CRA Single Reporting Platform Is Launched

https://www.enisa.europa.eu/news/the-cra-single-reporting-platform-is-launched
1•fourfire•14s ago•0 comments

Sam Altman spells out why the AI industry wants to slow down

https://www.cnbc.com/2026/09/14/sam-altman-ai-slowdown-anthropic-amodei-musk.html
1•cramer4next•1m ago•0 comments

The metric nobody measures: how long until the bleeding stops

https://www.getunleash.io/blog/mean-time-to-neutralize
1•alexcasalboni•1m ago•0 comments

Militant Democracy and Fundamental Rights [pdf]

https://warwick.ac.uk/fac/arts/history/students/modules/hi290/seminars/revolution/lowenstein_mili...
1•0bytes•2m ago•0 comments

Show HN: I made a flight simulator, except you're just a passenger

https://inflightsimulator.com
2•rkotcher•5m ago•0 comments

AI Myth – College Educate, Benefit from AI – Morgan Stanley

https://finvaulta.com/share/N4FZt0B1rE2bxHuo1rAjEg
1•campervans•6m ago•1 comments

Roff (Software)

https://en.wikipedia.org/wiki/Roff_(software)
1•vinhnx•7m ago•0 comments

My Complete Agentic Coding Setup Tech Stack Feb 21 2026 – Updated Jun 29 2026

https://hboon.com/my-complete-agentic-coding-setup-and-tech-stack/
1•Bluestein•14m ago•0 comments

Claude and I made a MAME attact mode app

https://www.coldbeamgames.com/ghostcade.html
1•Stargx•16m ago•0 comments

Ask HN: Can't input "double quotes" in Gmail web?

1•dgan•17m ago•0 comments

God Help Us, Let's Try to Learn About Mechanistic Interpretability Techniques

https://www.astralcodexten.com/p/god-help-us-lets-try-to-learn-about
2•AriFordsham•17m ago•0 comments

Can Europe build a competitive polysilicon industry?

https://www.pv-magazine.com/2026/05/20/can-europe-build-a-competitive-polysilicon-industry/
1•leonidasrup•17m ago•0 comments

Let your coding agents exchange nofollow backlinks

https://getlinkbunny.com/
2•Bluestein•18m ago•0 comments

How the Clash Between Money and Safety Created a Monumental Crisis for AI

https://www.wsj.com/tech/ai/openai-anthropic-crisis-money-safety-847bc1d6
2•thm•19m ago•0 comments

OpenAI Pauses IPO Plans Amid AI Safety Worries

https://www.pymnts.com/news/2026/openai-pauses-ipo-plans-amid-ai-safety-worries/
2•thm•19m ago•0 comments

Show HN: Blur. Sharpen. Repeat. Get Turing Patterns

https://www.maximevidal.com/turing-patterns
1•vmaxmc2•22m ago•0 comments

WebP

https://en.wikipedia.org/wiki/WebP
1•tosh•23m ago•0 comments

Whoop replacement noop 11.7 released

https://github.com/ryanbr/noop/releases
1•mp3geek•23m ago•0 comments

HN Is Getting Worse

5•ankonai•27m ago•4 comments

Worlds Upon The Wind: a peaceful roguelite deckbuilder about resettling a world

https://github.com/max99x/wutw-public
1•rdmuser•27m ago•1 comments

Show HN: Openstatus/health tree-shakable health endpoints for JavaScript servers

https://github.com/openstatusHQ/health
2•tibozaurus•28m ago•0 comments

The Archival Dystopia of Blade Runner 2049 and Aeon Flux

https://www.pop-archives.com/post/pop-archives-deep-thoughts-the-archival-dystopia-of-blade-runne...
2•october8140•36m ago•0 comments

When code is a maze, smart developers make maps

https://medium.com/@simonsmartiom/when-code-is-a-maze-smart-developers-make-maps-fbc452a48c1b
1•boxesnlines•39m ago•0 comments

Are generative models the next paintbrush?

https://wasi0013.com/2026/09/14/are-generative-models-the-next-paintbrush/
2•wasi0013•40m ago•0 comments

Immiserizing Growth

https://en.wikipedia.org/wiki/Immiserizing_growth
3•motionlessveloc•41m ago•0 comments

Kache v0.21:caching C/C++ links,nvcc objects,and the Clang-CL flags Firefox uses

https://github.com/kunobi-ninja/kache/releases/tag/v0.21.0
1•ainhoaa•44m ago•0 comments

A 386 PC for Your RP2350

https://github.com/rh1tech/frank-386
5•SamuraiLion•48m ago•0 comments

EuroBirdPortal – Live bird movements across Europe

https://www.eurobirdportal.org/ebp/en/
3•NKosmatos•48m ago•0 comments

Sharden: A mineable coin for paying miners

4•Shardhash•50m ago•0 comments

Reverse Engineering Google's TPUs

https://gherkinlabs.com/reverse-engineering-google-tpus
3•goldenarm•53m 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.