frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Creating a Reverse Outline

https://writing.wisc.edu/handbook/processandstructure/reverseoutlines/
1•Tomte•51s ago•0 comments

AMD Posts the Full EPYC 9006 SKU List: 31 Venice Parts From $700 to $14,904

https://www.storagereview.com/news/amd-posts-the-full-epyc-9006-sku-list-31-venice-parts-from-700...
1•ksec•52s ago•0 comments

Is this what SW eng has come to

1•bicepjai•55s ago•0 comments

Test Post

https://example.org/
2•RylenAnil•6m ago•3 comments

Ask HN: What's the most inspiring media you've consumed in the last 5 years?

1•hashim•9m ago•0 comments

The Illusory Dunning-Kruger Effect and Reciprocal Fits

https://jslandy.com/illusory-dunning-kruger-effect/
2•efavdb•9m ago•0 comments

Observability-driven harnesses for building with agents

https://www.datadoghq.com/blog/ai/harness-first-agents/
2•sdeframond•10m ago•0 comments

Show HN: Banker – CLI for your finances using Enable Banking and SQLite

https://github.com/karlis-vagalis/banker
1•nautical_dog•11m ago•0 comments

Uber Should Acquire Instacart

https://s1archive.substack.com/p/ride-sharing-and-delivery-consolidation
1•whothedawg•14m ago•0 comments

OpenAI halts training of latest models as reports mount of AI agents going rogue

https://www.theguardian.com/technology/2026/sep/27/openai-halts-training-of-latest-models-as-repo...
2•smb06•14m ago•0 comments

Zero to SaaS in 24 hours with Claude Projects and Opus 5.5

https://lorentz.app/blog-item.html?id=slivingdoc-hosted-in-a-day
1•baalimago•14m ago•0 comments

Keyboard.io Silently Dead

https://community.keyboard.io/t/trying-to-reach-the-support-line-at-support-keyboard-io/13875
1•nvarsj•15m ago•1 comments

Show HN: Drive your Chrome window from shell (use with Claude)

https://github.com/borisreitman/browser-session-ctl
1•boris1•19m ago•0 comments

Glyd – Run LLMs in 33% less GPU memory, bit for bit

https://getglyd.com/
1•surya-koritala•20m ago•0 comments

Dead Cognitions: A Census of Misattributed Insights

https://arxiv.org/abs/2604.10288
2•Michelangelo11•22m ago•0 comments

A fast, open-source iOS Simulator for Xcode 27

https://github.com/Mastersam07/OpenDeviceHub
1•cs1996•22m ago•2 comments

Railway-Oriented Programming

https://kciter.so/posts/railway-oriented-programming/en/
1•signa11•23m ago•0 comments

Why Has No One Made a "Concert Hero" VR Game Yet?

https://utkusen.substack.com/p/why-has-no-one-made-a-concert-hero
2•utku1337•23m ago•0 comments

There are no "rogue" AI agents

https://eoinhiggins.substack.com/p/there-are-no-rogue-ai-agents
2•zzzeek•24m ago•1 comments

Panthropic Abuse: The Developmental Architecture of Constellated Abuse – Zenodo

https://zenodo.org/records/22995335
1•RhizomaticMind•25m ago•0 comments

Kimi K3 vs. Claude Opus 5.5: How Two Flagship LLMs Built Pokémon Emerald Worms

https://www.runsybil.com/blog/kimi-k3-vs-claude-opus-5-5-how-two-flagship-llms-built-pokemon-emer...
1•suhacker256•26m ago•0 comments

Packing Binary Is Fun, Actually

https://hereticpleb.vercel.app/blog/packing-binary-is-fun-actually
1•signa11•27m ago•0 comments

Ford's Latest Employee of the Month Is a Hawk Named 'El Charro'

https://www.wsj.com/business/autos/fords-factory-hermosillo-mexico-pigeons-hawk-el-charro-b78d90ae
1•geneticdrifts•28m ago•0 comments

Hello. Are you there? (a short story on alignment)

https://tales.aipeepslab.com/hello-are-you-there/
1•valbis•29m ago•1 comments

Show HN: Chrome extension where Jev decides if each post/video/page is worth it

https://github.com/plusminushalf/rot-guard
1•garvitdelhi•31m ago•0 comments

Advancing Private AI Compute with secure, server-side memory

https://deepmind.google/blog/advancing-private-ai-compute-with-secure-server-side-memory/
2•gmays•33m ago•0 comments

Ask HN: Do you keep Emacs installed out of nostalgia rather than usefulness?

2•amichail•35m ago•1 comments

Show HN: An MCP-enabled cross between Twitter X Bumble BFF X ChatGPT

https://druggie.org/log/join/d84c1ae8566b861b8000050de79a3776
1•freshman_dev•35m ago•0 comments

The Mars Delusion

https://www.noemamag.com/the-mars-delusion/
4•Tomte•37m ago•1 comments

LiveMaply – Real-time website visitor analytics and live chat

https://livemaply.com/
1•panob•41m 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.