frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

FastAPI and Nuxt and Web3 Boilerplate

https://www.pynuxt.com/en/
1•k0ngz1•1m ago•1 comments

Claude Workout Gate

https://github.com/BotchetDig/workout-gate
1•kyleblarson•1m ago•0 comments

U.S. battery industry cuts losses, shifts to new ventures amid EV bust

https://www.dallasfed.org/research/economics/2026/0303
1•speckx•1m ago•0 comments

Pinning down a hardware bug in Intel 13th/14th gen CPUs

https://fgiesen.wordpress.com/2025/05/21/oodle-2-9-14-and-intel-13th-14th-gen-cpus/
1•fanf2•2m ago•0 comments

GLM-5.2: Built for Long-Horizon Tasks

https://z.ai/blog/glm-5.2
1•meetpateltech•3m ago•1 comments

Show HN: Ito – Code reviews that run code

https://www.ito.ai
1•evanmarshall•3m ago•0 comments

Oxford Digital News Report 2026

https://reutersinstitute.politics.ox.ac.uk/digital-news-report/2026
1•thm•3m ago•0 comments

How to Demolish a Bridge

https://practical.engineering/blog/2026/6/16/how-to-demolish-a-bridge
1•crescit_eundo•5m ago•0 comments

Publishers Sue WeLib for Copyright Infringement

https://www.publishersweekly.com/pw/by-topic/digital/copyright/article/100652-publishers-sue-pira...
1•ilamont•5m ago•0 comments

The Google / Xreal Aura XR glasses are now available to preorder

https://www.theverge.com/gadgets/950597/xreal-google-aura-xr-glasses-deposit-scheme
1•MehrdadKhnzd•6m ago•0 comments

Ipcrawl: A living atlas of open webcams discovered on the public internet

https://ipcrawl.com
1•arm32•6m ago•0 comments

Show HN: I made Oregon Trail for founders (paste your company URL)

https://foundertrail.vercel.app/
1•jgvandehey•6m ago•1 comments

Piu

1•mostafaabdrabu•6m ago•0 comments

Microsoft Clarity Is Down?

https://clarity.microsoft.com/
1•rkj93•7m ago•0 comments

Jami – Feature Drop: Shared Services

https://jami.net/shared-services/
1•kevincox•7m ago•0 comments

FBI disrupted alleged terror plot targeting White House UFC event [video][5 min]

https://www.youtube.com/watch?v=JCLN9psHjxY
1•Bender•7m ago•0 comments

Simdjson: Parsing gigabytes of JSON per second

https://github.com/simdjson/simdjson
1•saikatsg•9m ago•0 comments

A satellite just learned to find things on its own – here's what that means

https://techcrunch.com/2026/06/15/a-satellite-just-learned-to-find-things-on-its-own-heres-what-t...
1•speckx•10m ago•0 comments

Microsoft turns to Amazon for help with GitHub's AI-driven capacity issues

https://www.businessinsider.com/microsoft-github-amazon-ai-cloud-capacity-2026-6
1•otterley•10m ago•0 comments

Third SAIR competition: inverse Galois challenge

https://terrytao.wordpress.com/2026/06/16/third-sair-competition-inverse-galois-challenge/
1•jjgreen•11m ago•0 comments

At first, it does sound crazy: meet the scientists trying to refreeze the Arctic

https://www.theguardian.com/environment/2026/jun/16/arctic-sea-ice-rethickening-climate-geoengine...
1•robaato•13m ago•0 comments

Claude: Elevated errors across many models

https://status.claude.com/incidents/xmhsglsz3h3w
39•forks•13m ago•7 comments

Logical Ways to Track AI Agent Lineage and State in Code Development

https://davenporter.substack.com/p/how-to-track-ai-agent-lineage-and
1•davenportjw•13m ago•0 comments

Making things: interview series on creativity

https://digitalseams.com/blog/making-things-interview-series
1•bobbiechen•17m ago•0 comments

How to Use an Nvidia EGPU with Your Mac for Local AI in 2026

https://www.compute-market.com/blog/nvidia-egpu-mac-local-ai-setup-2026
2•falava•18m ago•0 comments

Show HN: VulnFeed – 9 security tools your AI agent can call (MCP server)

https://vulnfeed.novadyne.ai/
1•ngburke•18m ago•1 comments

They made a Pokemon TCG AI Battle Challenge with a $290k prize pool

https://www.shanethegamer.com/esports-news/pokemon-tcg-ai-battle-challenge/
1•misbloss•18m ago•0 comments

The octopus architecture for AI agents

https://blog.goodman.dev/blog/octopus-agent-architecture/
2•joshbetz•19m ago•0 comments

Russian warship 'fires warning shot at a British yacht in English Channel'

https://www.dailymail.com/news/article-15904823/Russian-warship-fires-warning-shot-yacht-English-...
2•Bender•19m ago•0 comments

Show HN: I built an AI that calls you, interviews you and publishes your content

https://heybono.ai/sms
1•zinxor•19m 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.