frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: NoDiff, a framework that lives in your monorepo

https://github.com/hbbio/nodiff
1•hbbio•2m ago•0 comments

Binomial Expressions

https://blog.oup.com/2026/07/binomial-expressions/
1•jruohonen•3m ago•0 comments

Show HN: A mod for Grand Prix Circuit (DSI/Accolade, 1988)

https://marnetto.net/projects/grand-prix-circuit
1•alberto-m•3m ago•0 comments

The Seven-Action Documentation Model

https://passo.uno/seven-action-model/
1•theletterf•4m ago•0 comments

RFC/The future of Abstract Wikipedia

https://meta.wikimedia.org/wiki/Requests_for_comment/The_future_of_Abstract_Wikipedia
2•quuxplusone•4m ago•0 comments

The Extras Are Tired

https://www.theatlantic.com/culture/2026/07/influencer-job-controversial-nantucket-store/688132/
1•thm•4m ago•0 comments

Weisswurst with insect flour? Bavaria's classic dish re-imagined [video]

https://www.youtube.com/watch?v=b8N2m0oYXxs
1•bushwart•5m ago•0 comments

Show HN: MCP server so AI agents can screen markets in plain English

https://github.com/xcreener/xcreener-mcp
1•guzzul•5m ago•0 comments

Terminal Trove Talks with Miguel de Icaza

https://terminaltrove.com/blog/terminal-trove-talks-with-miguel-de-icaza/
1•aghuang•9m ago•0 comments

Concerning Git's Packing Heuristics (2006)

https://www.kernel.org/pub/software/scm/git/docs/technical/pack-heuristics.html
1•gsu2•11m ago•0 comments

Video2NAND – Abusing video codecs for great computational power

https://sharedobject.blog/posts/vp8-combinatorial-logic/
1•firer•15m ago•0 comments

Mysterious DNA: two unknown ancestors found in human genome

https://www.euronews.com/health/2026/08/01/mysterious-dna-two-unknown-ancestors-found-in-human-ge...
1•ike_usawa•16m ago•0 comments

Can You Beat GothamChess?

https://chess-chances.alexboden.ca
2•alexboden•19m ago•0 comments

Show HN: Rails Agent – Build Autonomous AI Agents Natively in Ruby on Rails

https://rails-agent.com
1•kannanreghu•19m ago•0 comments

Reduction to the Table Top: Systematic Discovery at Low Cost

https://chillphysicsenjoyer.substack.com/p/on-reduction-to-the-table-top
1•crescit_eundo•20m ago•0 comments

The Magic of 8 and 24

https://arxiv.org/abs/2207.03871
1•brandonb•22m ago•0 comments

How to disable or avoid intrusive AI – librarian.net

https://www.librarian.net/notoai/
2•colinprince•23m ago•0 comments

Show HN: CC Meter, a Windows Tray Gauge for Claude Code and Codex Limits

https://github.com/silverdolphin863/claude-code-meter
1•silversurfer863•25m ago•0 comments

Do Not Trust, Continuously Verify (Your AI Agents)

https://nochan.net/b/Internet-Crap/20260714-Do-Not-Trust--Continuously-Verify/
2•Bender•25m ago•0 comments

The Seinfeld Chronicles: Digital Edition

https://seinfeld.visualisingdata.com/
3•wallflower•26m ago•0 comments

Show HN: Commonplace Wiki – A Confluence Alternative Based on Git and OKF

https://github.com/commonplace-wiki/commonplace
2•aiobe•28m ago•1 comments

Rails patches critical Active Storage flaw with RCE potential

https://www.bleepingcomputer.com/news/security/rails-patches-critical-active-storage-flaw-with-rc...
2•Brajeshwar•34m ago•0 comments

Ban AI Surveillance at Live Events

https://www.banfacialrecognition.com/venues/
2•Cider9986•34m ago•1 comments

Arrakis raises $8M for AI agent runtime security

https://runtimewire.com/article/arrakis-security-raises-8-million-ai-agent-runtime-controls
2•ryanmerket•35m ago•0 comments

World-first photonic time crystal opens a new era of light control

https://www.sciencedaily.com/releases/2026/07/260731034131.htm
2•bookofjoe•36m ago•0 comments

First open-source firmware for AM5 launches – Coreboot and openSIL on Zen 4

https://www.tomshardware.com/pc-components/motherboards/first-open-source-firmware-for-am5-offici...
3•sbulaev•37m ago•0 comments

Show HN: Sagrada – a linter for instruction files' belief state

https://cruxia.dev/
2•mars-ausili•38m ago•0 comments

Show HN: Claude Code takes forever, so I filled the waiting with Pokémon

https://github.com/zamarrowski/claudemon
2•zamarrowski•38m ago•0 comments

AI Images Are Everywhere. Here's What They Do to Our Brains, and What We Can Do

https://www.wsj.com/tech/ai/ai-slop-blurring-reality-podcast-06a9e879
2•fortran77•39m ago•2 comments

Survey: From Agile to a Product Operating Model

https://age-of-product.com/survey-product-operating-model/
1•swolpers•39m 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.