frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Airprompt – SSH into your Mac from your phone for AI agent prompts

https://www.npmjs.com/package/airprompt
1•hatefrad•2m ago•1 comments

Show HN: A community powered global network of probes

https://github.com/jsdelivr/globalping
1•jimaek•4m ago•0 comments

The Scrum-to-POM Transition Is a Role Repositioning Event

https://age-of-product.com/scrum-to-pom-transition/
1•swolpers•5m ago•0 comments

Pytest-cloudreport – local HTML reports and flaky-test detection for pytest

https://github.com/ahmad212o/pytest-cloudreport
1•ahmad212o•7m ago•0 comments

Blueprint: AI Hardware Design

https://www.blueprint.am/
1•handfuloflight•10m ago•0 comments

US is making Europe pay dearly for its half-hearted electrification

https://www.programmablemutter.com/cp/195461224
1•hackandthink•12m ago•0 comments

The reporters at this news site are AI bots. OpenAI's super PAC is funding it

https://twitter.com/TheMidasProj/status/2047692328396034490
1•pretext•17m ago•0 comments

San Francisco must preserve the birthplace of the Mission burrito

https://www.sfchronicle.com/food/restaurants/article/el-faro-mission-burrito-creator-22206173.php
2•divbzero•17m ago•0 comments

Enterprises Are Rethinking Kubernetes

https://www.infoworld.com/article/4161056/enterprises-are-rethinking-kubernetes.html
1•milkglass•20m ago•0 comments

Talk a stranger for fun or everything else

https://bakbak.fun/
2•chintan39•32m ago•1 comments

The West Forgot How to Make Things. Now It's Forgetting How to Code

https://techtrenches.dev/p/the-west-forgot-how-to-make-things
6•milkglass•35m ago•2 comments

The Coding Assistant Breakdown: More Tokens Please

https://newsletter.semianalysis.com/p/the-coding-assistant-breakdown-more
1•gmays•36m ago•0 comments

WTF Are Metaballs?

https://www.youtube.com/watch?v=LW03EEKjy9o
2•gdubs•38m ago•2 comments

Iran war hits Dubai chocolate pistachio supplies

https://www.ft.com/content/438ef32a-59e5-41b3-a0da-569716385347
1•KnuthIsGod•45m ago•0 comments

CO operating system age-verification open-source exemption doesn't include Linux

https://twitter.com/LundukeJournal/status/2048199650117554678
2•gasull•48m ago•0 comments

Why Rome Never Industrialized [video]

https://www.youtube.com/watch?v=uR8-AF6NJcc
2•Khaine•1h ago•1 comments

A Taiwanese Vestige in the Geedge Supply Chain

https://interseclab.org/research/madlink-a-taiwanese-vestige-in-the-geedge-supply-chain/
3•gslin•1h ago•0 comments

Show HN: Implit – Catch fake AI-generated dependencies

https://github.com/build-neurall/implit
1•neurall-build•1h ago•0 comments

Modern, Simple, Web Framework in C. REST, Templates, SSL, Metrics

https://github.com/briandowns/libpapago
1•ieska328•1h ago•0 comments

Rootless virtual machines with KVM and QEMU (2024)

https://developers.redhat.com/articles/2024/12/18/rootless-virtual-machines-kvm-and-qemu
1•adityaathalye•1h ago•0 comments

A suspect is in custody after Trump is rushed from correspondents' dinner

https://www.npr.org/2026/04/25/nx-s1-5799544/trump-white-house-correspondents-dinner
6•qmr•1h ago•0 comments

The American Wealth Curve: How the Gap Widens 8x Between Age 25 and 65

https://efficientdollar.com/blog/wealth-curve-by-age/
4•lundj•1h ago•0 comments

Aube – a fast Node.js package manager

https://aube.en.dev
1•microflash•1h ago•0 comments

How to train your brain to see possibility instead of doom

https://www.theguardian.com/books/2026/apr/19/how-to-train-your-brain-to-see-possibility-instead-...
3•1659447091•1h ago•0 comments

Revocation

https://www.potaroo.net/ispcol/2026-04/revocation.html
1•aragilar•1h ago•0 comments

First Paid Subscribers on Mymarks.net

https://mymarks.net/
2•shozzipen•1h ago•0 comments

Simple Sabotage of Agents

https://alexschroeder.ch/view/2026-03-12-agent-sabotage
1•Tallain•1h ago•0 comments

AGPLv3§74 Empowers Users to Thwart Badgeware Like OnlyOffice

https://sfconservancy.org/blog/2026/apr/16/badgeware-onlyoffice-nextcloud-affero-gpl/
46•pabs3•1h ago•4 comments

I Got 122 World Records to Prove a Point [video]

https://www.youtube.com/watch?v=mVH7OPx4QZU
1•reader9274•1h ago•0 comments

French tax official sold crypto investors' addresses: kidnappings followed

https://twitter.com/MarioNawfal/status/2047773069607854512
5•MrBuddyCasino•1h 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.