frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: DBLift – database migration management for Python teams

https://dblift.com/
1•cmodiano•19s ago•0 comments

Show HN: Typebase – A single-folder back end you write in TypeScript

https://typebase.io
1•andrewww-dev•2m ago•0 comments

The Record: Predictions

https://longbets.org/predictions/
2•EndXA•3m ago•0 comments

PepsiCo Scraps Coverage of Weight-Loss Drugs for Employees

https://www.bloomberg.com/news/articles/2026-08-25/pepsico-scraps-coverage-of-weight-loss-drugs-f...
2•cramer4next•5m ago•0 comments

A Trillion Times Larger

https://0xsmac.substack.com/p/a-trillion-times-larger
1•tosh•6m ago•0 comments

Bill Gates warns A.I. is more dangerous than Big Tech will admit

https://www.nytimes.com/2026/08/26/technology/bill-gates-ai-risks.html
1•eternalreturn•7m ago•0 comments

MI Rep "I took off a dead voter and guess what? That dead voter was put back on"

https://twitter.com/WallStreetApes/status/2092567742914122117
2•bilsbie•8m ago•0 comments

As Ubuntu embraces AI, Debian discusses banning all AI-generated code

https://www.xda-developers.com/as-ubuntu-embraces-ai-debian-discusses-banning-all-ai-generated-code/
1•robtherobber•8m ago•0 comments

Oral-History: Frances "Fran" Allen

https://ethw.org/Oral-History:Frances_%22Fran%22_Allen#Working_on_Early_Supercomputers:_The_Stret...
1•Bluestein•8m ago•0 comments

Axera AX8850 LLM running ggufs

https://github.com/woolcoxm/LLMTest
1•woolcoxm•9m ago•0 comments

Moonshot AI wants 30% of what US clouds earn from Kimi K3

https://thenextweb.com/news/moonshot-k3-revenue-sharing-us-clouds
3•Aboutplants•11m ago•0 comments

The turbulent AI era is here. The choices we make now are critical.

https://www.gatesnotes.com/work/make-ai-work-for-everyone/reader/a-turbulent-ai-era-and-critical-...
1•nanna•11m ago•0 comments

Just say something people want

https://www.gkogan.co/say-something-people-want/
1•gk1•12m ago•0 comments

Zig removes support for wasi-Libc

https://codeberg.org/ziglang/zig/pulls/36633
1•jedisct1•12m ago•0 comments

Show HN: A local tool that logs every time you swear at your AI coding assistant

https://github.com/fireinbelly/biomass-conversion-index-monitoring-system
1•lokinkl•12m ago•0 comments

Futurepedia

https://www.futurepedia.straxos.com/
1•geoinline•13m ago•0 comments

Show HN: Vyukov MPSC queue in C++20 with a six-claim formal memory-model proof

https://github.com/nisgemML/mpsc-queue
1•nisgem•17m ago•0 comments

Russia starts blocking DoH and DoT

https://risky.biz/risky-bulletin-russia-starts-blocking-doh-and-dot/
1•pjf•18m ago•0 comments

Radiation link in flight attendant's breast cancer, French court finds

https://www.bbc.com/news/articles/cn0j3z6147jo
3•dazhbog•19m ago•0 comments

LinkedIn's 'Seems Like AI Slop' button drops views by 40%

https://finance.yahoo.com/technology/ai/articles/linkedin-seems-ai-slop-button-195000046.html
4•mrweasel•20m ago•0 comments

Show HN: Code Stitcher – Apply any LLM output to your local codebase

2•aihatterer•21m ago•0 comments

The Intelligence Monopoly Is Over. Creating a God's Eye View of the Iran Strikes

https://www.spatialintelligence.ai/p/the-intelligence-monopoly-is-over
1•Bluestein•21m ago•0 comments

RandomAI – A retro split-flap board that routes you to a random AI

https://www.google.com/search?q=https://randomai.chat
1•theaijournalope•27m ago•1 comments

Playing whack-a-mole is losing

https://dadrian.io/blog/posts/whack-a-mole-is-losing/
1•allanbreyes•32m ago•0 comments

Baleba Signs for Manchester United

https://thefinalthirdfootball.blogspot.com/2026/08/thefinalthirdfootball.html
2•Africanway•33m ago•0 comments

AI models flub these intelligence tests. Can you fare any better?

https://www.technologyreview.com/2026/08/26/1141952/puzzles-ai-models-flub-these-tests/
2•joozio•33m ago•0 comments

Quantifying AI data center nitrogen oxide (NOx) emissions from space

https://arxiv.org/abs/2608.22153
1•vintagedave•33m ago•1 comments

Show HN: backpressure.systems adds MCP and CLI

https://backpressure.systems/mcp-and-cli
1•leocardz_•36m ago•0 comments

A spy satellite simulator in the browser, except the data is real

https://github.com/bilawalsidhu/gods-eye-view
1•bauerpl•39m ago•0 comments

Adaptable Engineers Hold Key Skills in the AI Era

https://spectrum.ieee.org/adaptable-engineer-core-skills
2•rbanffy•45m 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.