frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Tree Calculus

https://olydis.medium.com/a-visual-introduction-to-tree-calculus-2f4a34ceffc2
1•MelonUsk•52s ago•0 comments

One Question

https://www.tonightweanswer.com/
1•Elokote•2m ago•0 comments

Denzel Explains AI "Slop"

https://www.reddit.com/r/ClaudeCode/comments/1w9e1tg/denzel_explains_ai_slop/
1•freakynit•2m ago•0 comments

Show HN: Browser only CSV editor, data never leaves your machine

https://csvpreview.com
1•anshulsahni•3m ago•0 comments

The most Unreasonable Music Video build by Astra, it's amazing

https://www.youtube.com/watch?v=_h1KgS169iM
1•modinfo•10m ago•0 comments

Object A – Visible Passes

https://heavens-above.com/PassSummary.aspx?satid=60235&lat=30.0324&lng=-98.2969&loc=Unnamed&alt=0...
1•tocs3•10m ago•0 comments

SidePulse: Agent Status, at a Glance (LEDs in MacBook Pro SD Slot)

https://sidepulse.io/
1•gregsadetsky•17m ago•0 comments

How well do agents use test/verification techniques?

https://danluu.com/agentic-testing/
1•vinhnx•18m ago•0 comments

AI Is Making Us Build Too Much

https://sjg.io/writing/ai-is-making-us-build-too-much/
1•gmays•18m ago•0 comments

Show HN: Jackalope.dev

https://jackalope.dev/
1•ghosts_•20m ago•1 comments

A desktop tool written in Rust to lock GRUB with a physical USB rescue key

https://github.com/sysdev-0/grubst
1•devsys000•21m ago•0 comments

Prompting Is Dead in 6 Months. Andrew Ng, Stanford [video]

https://www.youtube.com/watch?v=9EuNUe-CJRM
1•thelastgallon•23m ago•0 comments

China Planted 78 Billion New Trees—and Seriously Messed Up Its Water Cycle

https://www.popularmechanics.com/science/environment/a73385264/china-reforesting-changes-hydrolog...
1•thunderbong•25m ago•0 comments

Do LLMs Know What to Ask and When? Evaluating Multi-Turn Information Seeking

https://arxiv.org/abs/2608.14808
1•wslh•27m ago•0 comments

Run an ArchiveTeam Warrior on your computer

https://tracker.archiveteam.org/
1•darknavi•29m ago•0 comments

Show HN: Archprint, infer architecture lint rules from your repo's import graph

https://github.com/Tommkruix/archprint
1•Tommkruix123•35m ago•0 comments

Show HN: NYC MapTap – Learn NYC neighborhoods (with subway routes when you miss)

https://albertjoseph0.github.io/nyc-maptap/
2•abj908•40m ago•1 comments

Show HN: Zero downtime embedding model upgrades

https://github.com/arnsri33/embedflow
1•coolArnav•41m ago•0 comments

Defeating Antisemitism Through Zionism

https://medium.com/freedomofthought/defeating-antisemitism-through-zionism-6c648c34c408
1•raynchad•45m ago•0 comments

Show HN: Caveat, a self-hosted publishing and newsletter tool

https://github.com/CaveatJS
1•jonas_kgomo•48m ago•0 comments

Canada holds first defense talks with China in more than 8 years

https://www.scmp.com/news/china/diplomacy/article/3366477/canada-and-china-thaw-continues-militar...
7•ilamont•51m ago•3 comments

Thames Tunnel

https://en.wikipedia.org/wiki/Thames_Tunnel
1•thunderbong•54m ago•0 comments

Create Passkey After Account Recovery Due to Forgotten Password

https://www.passkeycentral.org/design-guidelines/optional-patterns/create-passkey-after-account-r...
1•mooreds•56m ago•0 comments

"Everything's a Challenge" ADHD Individuals in the Midst of Rx Shortages

https://pmc.ncbi.nlm.nih.gov/articles/PMC11585964/
2•sans_souse•57m ago•0 comments

Jellyfin 12.0 Released

https://github.com/jellyfin/jellyfin/releases/tag/v12.0
1•cdrnsf•58m ago•0 comments

OpenClaw Is Open Source

https://github.com/openclaw/openclaw
1•noobplus•59m ago•0 comments

DSL Mania

https://astledsa.substack.com/p/dsl-mania
1•astledsa•1h ago•0 comments

AI cancer cures slowed by chip shortage, says Arm boss

https://www.bbc.com/news/articles/c0m39g7xzevo
3•dabinat•1h ago•0 comments

TeamAI by Tencent

https://github.com/Tencent/teamai-cli
2•handfuloflight•1h ago•0 comments

Hollywood's Box Office Boom Comes with 248M Missing Tickets

https://www.nytimes.com/interactive/2026/09/07/business/media/summer-movies-box-office.html
1•ChrisArchitect•1h ago•1 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.