frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Redundancy and Bloat Seen in AAA Game Engines

https://zero-irp.github.io/Redundancy-seen-in-AAA-game-engines/
1•davikr•2m ago•0 comments

What the AirCon Debate Says About Britain's Climate Insanity [video]

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

Why A.I. Won't Steal All Our Jobs

https://www.nytimes.com/2026/06/30/opinion/ai-agents-steal-jobs-employment.html
1•reaperducer•6m ago•0 comments

FEOM – Windows GUI automation at 8ms, no GPU needed

https://github.com/a92070888-dev/mcp-os-native-automation
1•a92070888•9m ago•0 comments

PangolinMatrix – write down encoded passwords, not real ones

https://pangolinmatrix.com
1•corvina•10m ago•0 comments

Google reCAPTCHA Reverse Engineered

https://github.com/elyelysiox/recaptcha
1•Pelada•13m ago•0 comments

Where can I find or get in contact with farmers specifically in the US?

2•strapchay•13m ago•0 comments

We Heart It is back

https://weheartit.net/
1•djxjxjcjcjc•14m ago•0 comments

Dory: Docker and Linux containers, native to your Mac

https://augani.github.io/dory/
1•xyzzy_plugh•27m ago•0 comments

Reconstructing SQLite's float-to-text without reading the source

https://github.com/lucasolopes/haruspex
1•byolopes•27m ago•0 comments

EPA approves pesticides that may be considered forever chemicals

https://thehill.com/policy/energy-environment/5950487-epa-pesticides-forever-chemicals-pfas/
1•OutOfHere•35m ago•0 comments

Show HN: Void test: 6 frontier LLMs go silent on "Be silence." Live proof

https://getswiftapi.com/void-test
1•rayanpal_•40m ago•0 comments

Show HN: SmolSignal – signal copilot for Flipper Zero files

https://github.com/SmolNero/SmolSignal
2•edgar_ortega•43m ago•1 comments

Show HN: I replaced my $500/mo legal SaaS with an AI-generated toolkit

https://maxiporonga.gumroad.com/l/ytruk
1•promptalex53•44m ago•0 comments

Show HN: Earshot, a homebrew Claude Tag

https://github.com/Octember/earshot
1•octember•47m ago•1 comments

Maybe you should learn something

https://www.marginalia.nu/log/a_135_learn/
2•tylerdane•48m ago•1 comments

FemiCore Review 2026 – 7-Second Bladder Reset Method Explained

https://gamma.app/embed/FemiCore-Review-2026-7-Second-Bladder-Reset-Method-Explained-9yahcz6mepth...
1•wildriverreview•48m ago•0 comments

Show HN: Local privacy-first Microsoft Recall alternative with Gemma 4

https://github.com/ayushh0110/ScreenMind/blob/main/README.md
1•skye0110•53m ago•0 comments

MagicBookShelf – A modern reader for classic novels – Crime and Punishment

https://magicbookshelf.org/read/crime-and-punishment/
1•philipfweiss•1h ago•0 comments

Four-Byte Burger [video]

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

A Conflict-Free Multi-Agent Ensemble for Claude and Codex

https://medium.com/@Koukyosyumei/a-conflict-free-multi-agent-ensemble-for-claude-and-codex-0ded61...
1•syumei•1h ago•0 comments

Show HN: Snibble – Snake x Scrabble where every match fits in a QR code

https://snibble.gg/
1•purple-leafy•1h ago•0 comments

Cholibrium Reviews 2026 – Does This Mushroom Blend Work

https://gamma.app/embed/Cholibrium-Reviews-2026-Does-This-Mushroom-Blend-Work-7rsn8kmry09nfdi?mod...
1•wildriverreview•1h ago•0 comments

BrickSlider – TypeScript-first, Tailwind-first carousel

https://sixsrc.github.io/brickslider/
1•marcusloren•1h ago•1 comments

A 2048-spin bulk acoustic wave Ising machine for number partitioning and Sudoku

https://arxiv.org/abs/2607.02112
2•Jimmc414•1h ago•0 comments

How Can Reinforcement Learning Achieve Expert-Level [Chip] Placement?

https://arxiv.org/abs/2604.25191
2•Jimmc414•1h ago•0 comments

Synthesis is harder than analysis

https://surfingcomplexity.blog/2026/07/03/synthesis-is-harder-than-analysis/
13•azhenley•1h ago•4 comments

I watched a flat earth convention

https://theconversation.com/i-watched-an-entire-flat-earth-convention-for-my-research-heres-what-...
1•robertclaus•1h ago•0 comments

The Human in the Loop Essay

https://designedbybruno.net/essays/06-the-human-in-the-loop
1•designedbybruno•1h ago•0 comments

Show HN: A tree-based replacement for PowerPoint

https://presentation.ironactionai.com/
1•nkersting•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.