frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ori Mnemos – an open-source persistent memory for AI agents

https://github.com/aayoawoyemi/Ori-Mnemos
1•starro____•13s ago•1 comments

Show HN: Endgame – Production-aware ML under the sklearn API

1•cameronhamilton•25s ago•0 comments

OnWatch – Track 6 AI API quotas from your terminal (<50MB RAM, zero telemetry)

1•prakersh•1m ago•0 comments

The Lobster Programming Language

https://strlen.com/lobster/
1•keyle•2m ago•0 comments

Don't Make Me Talk to Your Chatbot

https://raymyers.org/post/dont-make-me-talk-to-your-chatbot/
1•pkilgore•3m ago•0 comments

Schools in England sidelining dressing-up for World Book Day, MPs hear

https://www.theguardian.com/education/2026/mar/03/schools-england-dressing-up-world-book-day-mps-
1•zeristor•4m ago•0 comments

Strikes on Amazon data centers highlight vulnerability to physical disasters

https://apnews.com/article/amazon-aws-data-center-uae-iran-bahrain-71066b0a822c4cfd88b61e3fe79af917
2•the_arun•5m ago•1 comments

IKEA deploys mini robot trucks in China for in-store fulfillment

https://www.freightwaves.com/news/ikea-deploys-mini-robot-trucks-in-china-for-in-store-fulfillment
3•crescit_eundo•6m ago•0 comments

Why does this river slice straight through a mountain range?

https://theconversation.com/why-does-this-river-slice-straight-through-a-mountain-range-after-150...
1•PaulHoule•8m ago•0 comments

Show HN: Limelight – Let your AI see what your app does at runtime

https://github.com/getlimelight/limelight-sdk
1•cyrusburns•9m ago•0 comments

Rubio to World: Stop Doing the Exact Same Thing the US Just Did

https://www.techdirt.com/2026/03/03/rubio-to-world-stop-doing-the-exact-same-thing-the-us-just-did/
8•hn_acker•11m ago•0 comments

Why Apple's move to video could endanger podcasting's greatest power

https://www.anildash.com/2026/02/28/apple-video-podcast-power/
2•latexr•13m ago•0 comments

Revamping Our Membership Program

https://www.rtings.com/company/revamping-our-membership-program
1•akyuu•14m ago•0 comments

Amidst the AI frenzy nobody is taking the human side

https://cognitivefriction.substack.com/p/missing-tribe
1•cyclopeanutopia•15m ago•0 comments

Show HN: AI making payments with your regular Visa card, securely. Prava

https://playground.prava.space/
1•davinciind•16m ago•0 comments

Show HN: Grok Brain – Turn your Grok data into a private 3D brain visualization

https://grok-brain.vercel.app/
1•zimtzimt•17m ago•1 comments

Google Rewrites Applications Every Few Years. Can You?

https://orischwartz.com/posts/google-rewrites-applications-every-few-years.html
1•fleaflicker•17m ago•0 comments

OpenAI CEO Sam Altman Defends Pentagon Work to Staff

https://www.wsj.com/tech/ai/openai-ceo-altman-defends-pentagon-work-to-staff-calls-backlash-reall...
7•cdrnsf•18m ago•0 comments

Growing Postal

https://rescx.substack.com/p/growing-postal
1•cyclopeanutopia•19m ago•0 comments

D3D12 Shader Execution Reordering

https://devblogs.microsoft.com/directx/shader-execution-reordering/
1•ksec•20m ago•0 comments

Ubuntu Planning Mandatory Age Verification

https://twitter.com/lundukejournal/status/2028914903587631613
5•egorfine•20m ago•2 comments

Awesome-Selfhosted

https://github.com/awesome-selfhosted/awesome-selfhosted
2•nobody9999•22m ago•0 comments

Facebook Appears to Be Down

10•Molitor5901•25m ago•8 comments

Sen. Wyden Warns of Mass Surveillance Amid Pentagon's Fight with Anthropic

https://gizmodo.com/sen-wyden-warns-of-mass-surveillance-amid-pentagons-fight-with-anthropic-2000...
7•WarOnPrivacy•26m ago•0 comments

Bluesky adds (broken) age verification

https://bsky.app
2•neogodless•26m ago•1 comments

Show HN: Webact – token-efficient browser control for AI agents (GitHub)

https://github.com/kilospark/webact
1•kxbnb•27m ago•1 comments

In startups, "I assumed" is the most expensive sentence you can say [video]

https://www.tiktok.com/@taxhero_ai/video/7613137316227353887?is_from_webapp=1&sender_device=pc
1•salleisha•28m ago•1 comments

Ask HN: Why don't MacBooks have Cellular Modems yet?

2•avonmach•28m ago•1 comments

Show HN: Proofd – Free AI career risk score based on your tasks, not job title

https://www.proofd.ai
1•dixalex•30m ago•0 comments

Is Shopify Good for SEO in 2026?

https://www.techwrath.com/is-shopify-good-for-seo-2026/
1•techwrath11•31m ago•0 comments
Open in hackernews

Zig and GPUs

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

Comments

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