frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Tighten skill to read AI-generated code faster

https://github.com/markrogersjr/skills/blob/main/skills/tighten/SKILL.md
1•markrogersjr•3m ago•0 comments

Spatial Programming [video]

https://www.youtube.com/watch?v=eQgxFuw8f1U
1•elcaro•3m ago•0 comments

Show HN: AlphaPerch – Track product execution for companies you follow using AI

https://alphaperch.com
1•sebasnar•4m ago•0 comments

Iran is the first out-loud cyberwar the US has fought

https://www.theregister.com/2026/03/09/kettle_2026_episode_01_iran_war/
1•defrost•4m ago•0 comments

Show HN: Compose Launcher – A macOS app to run multiple Docker Compose files

https://github.com/yingbo/compose-launcher
1•yingbo•7m ago•0 comments

Time Travel: Temporal Mutability in the Absence of Hardware [pdf]

https://wbnns.com/time-travel.pdf
1•wbnns•8m ago•0 comments

1190: Time (prize-winning Xkcd comic animation)

https://deplicator.github.io/xkcd-time-at-your-pace/
1•felineflock•9m ago•0 comments

Monocod

1•twoelf•12m ago•0 comments

MinusPod: Automatically Remove Ads from Podcasts

https://github.com/ttlequals0/MinusPod
2•Ttlequals0•14m ago•1 comments

The Rise of the Techno-Pastoral

https://noreturn.blog/p/the-rise-of-the-techno-pastoral
1•SuperShibe•15m ago•0 comments

I built a browser-based version of MARS MIPS simulator

https://webmars.nfiles.top/
2•nenepbl•20m ago•1 comments

Raymarching meets Dyalog APL (2024)

https://bl0v3.com/Blog/raymarching-in-dyalog-apl/
1•Duanemclemore•20m ago•0 comments

Tiled – Flexible Level Editor

http://www.mapeditor.org/
1•netule•22m ago•0 comments

Open source Claude Code swarms WTF

https://github.com/m0at/hermes-lite
1•sfffs•26m ago•1 comments

Work Life Balance in Japan's Tech Industry

https://japan-dev.com/blog/work-life-balance-in-the-japanese-tech-industry
1•etdev•27m ago•0 comments

Rust Bibliography

https://rustc-dev-guide.rust-lang.org/appendix/bibliography.html#rust-bibliography
1•vinhnx•28m ago•0 comments

Checking Write Bandwidth on GPUs

https://clamtech.org/?dest=gpuwrite
1•matt_d•29m ago•0 comments

Rectified Flow Auto Coder

https://world-snapshot.github.io/RAC/
1•E-Reverance•29m ago•1 comments

Servo is almost ready for Cordova, but there are two missing pieces

https://blog.merzlabs.com/posts/cordova-servo/
1•Fudgel•33m ago•0 comments

Model Collapse

https://aksioma.org/model-collapse
1•jruohonen•36m ago•0 comments

Show HN: Pmc – tiny single binary for packing code into LLM context

https://github.com/Water-Run/pack-my-code
3•linxxxx•36m ago•1 comments

I Asked My AI About Israel-Iran. It Tried to Intercept a Satellite

https://github.com/fredabila/orcbot
2•abilafredkb•36m ago•4 comments

Show HN: A high-performance, privacy-focused normal map generator in the browser

https://normalmap-generator.online/
1•maxnew•37m ago•1 comments

Show HN: Raglet(open-source)–portable RAG for small text corpora (no infra)

https://github.com/mkarots/raglet
1•cepstrum9•40m ago•1 comments

Seedance 2.0 Pro – Next-Gen AI Video Generator by ByteDance

https://www.seedance2pro.com
2•AgarwalKamrul•41m ago•2 comments

Paris: Causally Consistent Transactions with Partial Replication

https://arxiv.org/abs/1902.09327
1•Kinrany•41m ago•1 comments

Show HN: Transcribe audio from apps, files and your device's microphone

https://play.google.com/store/apps/details?id=com.dstudio.d_transcriber&hl=en
1•dstudios•42m ago•0 comments

Laws of UX

https://lawsofux.com/
1•celadevra_•42m ago•0 comments

Challenges in Decompilation and Reverse Engineering of CUDA-Based Kernels [pdf]

https://nicolo.dev/files/pdf/reverse26-cuda-kernels.pdf
1•matt_d•42m ago•0 comments

Tesla opens its first Megacharger station to Semi customers in California

https://electrek.co/2026/03/08/tesla-opens-first-megacharger-ontario-california-semi-customers/
2•mattas•43m ago•0 comments
Open in hackernews

Zig and GPUs

https://alichraghi.github.io/blog/zig-gpu/
57•Cloudef•10mo ago

Comments

LegNeato•10mo ago
See also https://github.com/Rust-GPU/rust-gpu and https://github.com/rust-gpu/rust-cuda
ladyanita22•10mo 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•10mo ago
Microsoft indicated they are switching to SPIR-V from DXIL: https://devblogs.microsoft.com/directx/directx-adopting-spir...
skywal_l•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo ago
The Zig compiler can compile C, though.