frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

ZKP-Vault: Cryptographic Session Gating and Data Center Optimization

https://github.com/Les-Senters/ZKP-Vault-
1•zkpvault•31s ago•0 comments

I'm Not a Cat

https://www.scattered-thoughts.net/writing/im-not-a-cat/
1•jamii•1m ago•0 comments

I Am the Spark, the Bellows, and the Quench

https://zackproser.com/blog/spark-bellows-quench
1•gk1•2m ago•0 comments

The year is 2063 and you were never interesting

https://lizleatrice.substack.com/p/the-year-is-2063-and-you-were-never
1•FigurativeVoid•3m ago•0 comments

Omnigent: Open-source meta harness for agents

https://github.com/omnigent-ai/omnigent
1•chatmasta•4m ago•0 comments

PostgreSQL Is Enough

https://gist.github.com/cpursley/c8fb81fe8a7e5df038158bdfe0f06dbb
2•Imustaskforhelp•10m ago•0 comments

Steam Machine: Official Overview and Quick Start Guide [video]

https://www.youtube.com/watch?v=XPNW3GCIeOM
1•Jotalea•13m ago•0 comments

Show HN: RealTube – Watch YouTube with filters for AI-generated content

https://realtube.io
1•danielpop•14m ago•0 comments

Cloudflare teams up with big browsers to help websites detect unwelcome visitors

https://www.theregister.com/software/2026/06/22/cloudflare-teams-up-with-big-browsers-to-help-web...
2•cpeterso•18m ago•0 comments

Colorado Startup Week Call for Sessions 2026

https://docs.google.com/forms/d/e/1FAIpQLScfiL33y9FMODTRB-AqlZaWEoA3cbwhXg1dDFEEy_-uyoqfjQ/viewform
3•mooreds•20m ago•0 comments

Why communities struggle to change [video]

https://www.youtube.com/watch?v=HGa2a4IiYOA
1•mooreds•20m ago•0 comments

Food Delivery Killed Competition (and Your Budget) [video]

https://www.youtube.com/watch?v=1Eq5jzsu1xU
2•mooreds•22m ago•0 comments

Stochastics

https://stochastics.vercel.app/
2•talos-better•26m ago•0 comments

Chinese Supercomputer Overtakes U.S. as World's Fastest

https://www.wsj.com/tech/ai/chinese-supercomputer-overtakes-u-s-as-worlds-fastest-d0f8dbff
1•bookofjoe•27m ago•2 comments

Show HN: GDPRedirect – Become EU compliant in one line of code (satire)

https://gdpredirect.com
2•apwn•27m ago•0 comments

Strong Earthquake Felt in Caracas, Venezuela - Reuters Witness

https://twitter.com/cgtnamerica/status/2069905400963404242
1•mikhael•29m ago•0 comments

Maturana: Hardware-isolated, zero-trust agent harness

https://github.com/ajensenwaud/maturana
1•hestefisk•31m ago•0 comments

New Study Shows That Tall Hoods Cause Deaths per Year

https://www.caranddriver.com/news/a71663782/study-vehicle-hood-height-pedestrian-safety/
6•breve•32m ago•2 comments

Show HN: Clearthesis – Get a clear investment thesis for any public US company

https://www.clearthesis.ai/home
1•kumaramit0703•33m ago•0 comments

Congress passes largest housing affordability bill and Trump cancels signing

https://www.npr.org/2026/06/23/nx-s1-5867575/congress-passes-housing-affordability-bill
3•sizzle•34m ago•0 comments

OmniIDE 1.0.4 by OmniNodeCo Released

https://github.com/OmniNodeCo/OmniIDE/releases/tag/v1.0.4
1•OmniNodeCo•35m ago•0 comments

LLMs use "safety" specific neuron layers to identify vulnerabilities in code

https://arxiv.org/abs/2605.29901
2•summarity•37m ago•0 comments

Save Design: Elements Library

https://save.design/explore
1•handfuloflight•37m ago•0 comments

unrot your brain newsletter · issue #1

https://readpondercom.substack.com/p/unrot-your-brain-newsletter-issue
1•wingdiction•37m ago•0 comments

Talos: Scaling rare disease diagnosis by automated, iterative genomic reanalysis

https://www.microsoft.com/en-us/research/blog/talos-scaling-rare-disease-diagnosis-with-automated...
2•femto•38m ago•1 comments

I Built a Zero-Trust Resume Pipeline to Stop AI from Hallucinating

https://github.com/Gotili/EigenCV
1•g0tili•41m ago•0 comments

A24 Knows You're Mad About the Google AI Collab

https://www.wired.com/story/a24-knows-youre-mad-about-the-google-ai-collab/
4•nate•42m ago•1 comments

How We Securely Serve a Large Agent Fleet on a Small Infra Footprint

https://gluondb.com/blog/how-we-securely-serve-a-large-agent-fleet
5•slopranker•43m ago•1 comments

AI Browser Game Jam 3 submissions closed with 85 AI-assisted browser games

https://itch.io/jam/ai-game-jam-3/entries
1•KilledByAPixel•46m ago•1 comments

Micron stock jumps 12% as memory crunch lead to quadrupling of revenue

https://www.cnbc.com/2026/06/24/micron-mu-earnings-report-q3-2026.html
10•mgh2•46m ago•1 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.