frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Codegraff: 40× leaner file tools for your coding agent

https://codegraff.com
2•doppp•6m ago•0 comments

Making 768 servers look like 1

https://planetscale.com/blog/making-768-servers-look-like-1
1•hisamafahri•8m ago•0 comments

Easy acceleration with distributed array on interactive AI supercomputer [video]

https://www.youtube.com/watch?v=rqmJk9aIJ6I
2•teleforce•10m ago•0 comments

Null Handling in SQLite

https://www.sqlite.org/nulls.html
2•rzk•11m ago•1 comments

Making the internet fun again: Stumble Upon v2

https://whip-feed.agam-92b.workers.dev/
2•samagra14•11m ago•0 comments

The Zen of Parallel Programming: The Big I and the Global Sum URL

https://smolnero.com/posts/the-zen-of-parallel-programming-the-big-i-and-the-global-sum
2•edgar_ortega•11m ago•0 comments

Glowing Pickle Demonstration

https://en.wikipedia.org/wiki/Glowing_pickle_demonstration
2•gregsadetsky•15m ago•0 comments

Show HN: Git-remote-iroh – Ephemeral P2P Git remote

https://github.com/magik6k/git-remote-iroh
2•devttyeu•15m ago•0 comments

Identifying JDK value class candidates

https://mail.openjdk.org/archives/list/core-libs-dev@openjdk.org/thread/Y72NRXM7KYBX43OKYBQMVKOZD...
2•Tomte•19m ago•0 comments

Guerrilla London Bus Ads Mock Kylie Jenner's Meta Glasses Campaign

https://hyperallergic.com/guerrilla-london-bus-ads-mock-kylie-jenners-meta-glasses-campaign/
4•decimalenough•20m ago•0 comments

Familiar – Local AI Workspace with Chat, Notes, Wiki, and Automations

https://github.com/sixvolts/familiar
2•six_volts•20m ago•0 comments

Inside Anthropic's state-by-state plan to ratchet up AI rules

https://www.politico.com/news/2026/07/15/inside-anthropics-state-by-state-plan-to-ratchet-up-ai-r...
3•bluepeter•23m ago•0 comments

RuntimeWire – Startup intelligence for the AI economy

https://runtimewire.com/
2•enjoyyourlife•28m ago•0 comments

A Manifesto for Preserving Content on the Web (2019)

https://jeffhuang.com/designed_to_last/
2•downbad_•29m ago•0 comments

Might doomscrolling cause our commitment muscles to atrophy?

https://chrisyeh.com/2026/07/commitment-is-declining-and-why-you-should-resist.html
3•chrisyeh•29m ago•1 comments

1,300 Beautiful Wildlife Illustrations from the 19th Century Now Restored

https://www.openculture.com/2026/07/explore-1300-beautiful-wildlife-illustrations-from-the-19th-c...
2•gslin•32m ago•0 comments

OpenAI and Guardian Media Group launch content partnership

https://openai.com/index/openai-and-guardian-media-group-launch-content-partnership/
2•wertyk•32m ago•0 comments

Linux kernel won't be anti-AI – Linus Torvalds

https://lore.kernel.org/all/CAHk-%3Dwi4zC%2BZe8e%2Bp3tMv8TtG_80KzsZ1syL9anBtmEh5Z40vg@mail.gmail....
6•haritha1313•32m ago•2 comments

I Collect Blog Statistics, Respectfully

https://onlinegoddess.net/2026/07/how-i-collect-blog-statistics-respectfully/
3•cyb0rg0•36m ago•1 comments

Roman Empire GDP per Capita Map Shows That Romans Poorer Than Countries Today

https://brilliantmaps.com/roman-empire-gdp/
2•mathattack•37m ago•0 comments

Sony-Owned Crunchyroll Is Now Kneecapping Physical Anime Sales

https://www.gamespot.com/articles/sony-owned-crunchyroll-is-now-kneecapping-physical-anime-sales/
2•jmsflknr•40m ago•0 comments

GitHub Copilot: your AI pair programmer (2021)

https://github.blog/news-insights/product-news/introducing-github-copilot-ai-pair-programmer/
2•kmlsec•40m ago•0 comments

Can AI build a jet engine? JARVIS Challenge tests AI copilots

https://news.mit.edu/2026/can-ai-build-jet-engine-jarvis-challenge-tests-ai-copilots-in-tough-tec...
3•ilamont•45m ago•0 comments

Open Source, Free Tier Capable Whispr Using Cloudflare AI

https://github.com/PrestigePvP/Voicebox
2•TreDub•47m ago•0 comments

Where Americans Thrive in Europe

https://palombo.substack.com/p/where-americans-actually-thrive-in
6•znnajdla•48m ago•0 comments

Fleet: Hierarchical Task-Based Abstraction for Megakernels on Multi-Die GPUs

https://arxiv.org/abs/2604.15379
4•matt_d•49m ago•0 comments

The Shape of Apps

https://parakeet.co/blog/the-shape-of-apps/
3•OuterVale•49m ago•0 comments

AI Coach for Creators

https://getboom.ai
2•MakeSenseAna•51m ago•1 comments

Making colordx fast: V8 lessons from a color library

https://dkryaklin.com/blog/colordx-v8-performance
2•matthberg•51m ago•0 comments

Ask HN: Is consciousness fundamentally a process of preserving identity?

3•diarrheaasmr•52m 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.