frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

First Public Windows 7 Demo

https://hardcoresoftware.learningbyshipping.com/p/094-first-public-windows-7-demo
1•tosh•38s ago•0 comments

MasterSelects: A GPU-First Video Editor Built on WebGPU

https://www.webgpu.com/showcase/masterselects-webgpu-video-editor/
1•FarhadG•1m ago•0 comments

Israeli spy firm crashes Slovenia's election

https://www.politico.eu/article/black-cube-leak-tape-corruption-israel-spy-firm-slovenia-election/
1•throw310822•3m ago•0 comments

Turn AWS CloudShell into a distributed file store for fun

https://github.com/dan-v/cloudshell-store
1•tietjens•5m ago•0 comments

macOS: What is a Background Security Improvement, and how does it work?

https://eclecticlight.co/2026/03/19/what-is-a-background-security-improvement-and-how-does-it-work/
1•ingve•6m ago•0 comments

OpenCode drops Claude Pro/Max subscription support per Anthropic's legal request

https://github.com/anomalyco/opencode/pull/18186
3•kretaceous•8m ago•0 comments

Stitch – Design with AI

https://stitch.withgoogle.com/
1•Anon84•9m ago•0 comments

Verification costs shape the jagged frontier

https://langkilde.se/blog/living-with-asi/
1•langkilde•11m ago•0 comments

Observability for your LLM-powered apps: OTel Instrumentation for RubyLLM

https://thoughtbot.com/blog/observability-for-your-llm-powered-apps-otel-instrumentation-for-rubyllm
1•earcar•13m ago•0 comments

Show HN: Try out my pixel platformer demo with an RL agent you can play against

https://rlplays.com/game
1•textlapse•16m ago•0 comments

Show HN: GitComet fastest open source Git GUI launched

https://gitcomet.dev/
2•Havunen•16m ago•0 comments

Heisuke Hironaka Has Died

https://japannews.yomiuri.co.jp/society/general-news/20260319-317449/
1•pfortuny•19m ago•1 comments

Commission presents proposal for EU Inc. – a single legal entity for Europe

https://ec.europa.eu/commission/presscorner/detail/en/ip_26_614
2•earcar•21m ago•1 comments

Securing digital assets against future threats

https://www.technologyreview.com/2026/03/16/1134287/securing-digital-assets-against-future-threats/
1•joozio•22m ago•0 comments

Prevalence of Alpha-Synuclein Seeding in Olfactory Mucosa Following SARS-CoV-2

https://www.researchsquare.com/article/rs-8855629/v1
1•luu•23m ago•0 comments

Store birth date in systemd for age verification

https://github.com/systemd/systemd/pull/40954
1•sadeshmukh•26m ago•0 comments

Speeding at higher speeds does not save time by a lot

https://old.reddit.com/r/SipsTea/comments/1rwbzoe/speeding_at_higher_speeds_does_not_save_time_by_a/
1•taubek•32m ago•0 comments

Nvidia's AI-Powered Photorealistic Gaming Technology Roasted as 'AI Slop'

https://www.forbes.com/sites/conormurray/2026/03/17/nvidias-ai-powered-photorealistic-gaming-tech...
1•helsinkiandrew•34m ago•0 comments

Infinitely many primes end in a 7

https://hidden-phenomena.com/articles/dirichlet
2•vismit2000•41m ago•0 comments

Does anyone know which company has the best tool battery technology?

1•Lohin•43m ago•0 comments

Reducing features to increase privacy, is this is good move?

1•eddiejaoude•43m ago•1 comments

The Riemann hypothesis (or, how to earn $1M)

https://hidden-phenomena.com/articles/rh
1•vismit2000•44m ago•0 comments

Cities: Skylines 2 boss says they overestimated Unity's capabilities

https://www.pcgamer.com/games/sim/cities-skylines-2-boss-says-they-completely-overestimated-the-u...
2•tietjens•46m ago•0 comments

DOGE staffer who flagged grants for 'DEI' struggles to define the term [video]

https://www.youtube.com/watch?v=WpbGF7l-t2w
1•thelastgallon•46m ago•0 comments

Is Math Art? Werner Herzog Says Yes

https://news.artnet.com/art-world/werner-herzog-brooklyn-public-library-pi-day-2754957
1•cafebeen•46m ago•0 comments

Why Tech Bros Are Now Obsessed with Taste

https://www.newyorker.com/culture/infinite-scroll/why-tech-bros-are-now-obsessed-with-taste
1•achow•47m ago•1 comments

Tools Written on the Uxn VM

https://100r.ca/site/projects.html
2•anonzzzies•48m ago•0 comments

Is Hacker News losing interest in startups?

https://hntrends.net/words/startup
2•kleiba•50m ago•1 comments

EpsteinBench: We Brought Epstein's Voice Back but Got More Than We Wanted

https://morgin.ai/articles/epsteinbench-we-brought-epsteins-voice-back.html
2•dilutedh2o•54m ago•3 comments

ahsohtoa: Structure-of-Array Synthesis in C++20

https://github.com/celtera/ahsohtoa
1•tosh•55m ago•0 comments
Open in hackernews

Zig and GPUs

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

Comments

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