frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

ArXiv URL Drop in for Markdown

https://markxiv.org/
1•tonydco•5m ago•1 comments

Chinese Typewriter

https://www.youtube.com/watch?v=yNoWMaOyWHY
1•skogstokig•8m ago•0 comments

Towards a Physics Foundation Model

https://arxiv.org/abs/2509.13805
2•NeoInHacker•9m ago•0 comments

Howl.com (With apologies to Allen Ginsburg) (2000)

https://www.salon.com/2000/03/22/howl/
1•phendrenad2•11m ago•0 comments

To do list CLI that feels like Git

https://www.tm-cli.com/
1•ethantrang•11m ago•1 comments

Aaron Swartz: Providing APIs (2013)

https://en.wikisource.org/wiki/A_Programmable_Web/Chapter_5
1•aragonite•17m ago•0 comments

Parents buy bulletproof backpack shields to protect kids from school shooters

https://abc7.com/post/parents-buy-bulletproof-backpack-shields-protect-kids-school-shooters-amid-...
6•lxm•24m ago•4 comments

Show HN: XSched, a scheduling framework for multitasking over diverse XPUs

https://github.com/XpuOS/xsched
1•JialongLiu•26m ago•0 comments

We've officially found 6k exoplanets, NASA says

https://www.space.com/astronomy/exoplanets/weve-officially-found-6-000-exoplanets-nasa-says-were-...
3•cryptoz•28m ago•0 comments

Battling a rare brain-eating disease in an Indian state

https://www.bbc.com/news/articles/c79ven0xxyqo
2•breve•31m ago•0 comments

Numbers Station

https://en.wikipedia.org/wiki/Numbers_station
1•acconrad•31m ago•0 comments

Isaac 0.1 – Perception for the Physical World

https://marketing.perceptron.inc/blog/introducing-isaac-0-1
1•simonpure•39m ago•0 comments

Athletics can't keep kidding itself – it needs a plan to save track and field

https://www.theguardian.com/sport/2025/sep/09/athletics-save-track-and-field-social-media-noah-ly...
1•PaulHoule•40m ago•0 comments

Making LLMs more accurate by using all of their layers

https://research.google/blog/making-llms-more-accurate-by-using-all-of-their-layers/
1•emschwartz•41m ago•0 comments

UC Berkeley gives personal information for 150 students and staff to government

https://www.dailycal.org/news/campus/uc-berkeley-turns-over-personal-information-of-more-than-150...
38•pabs3•42m ago•4 comments

"The Falling Man," 20 Years Later

https://www.theringer.com/2021/09/08/national-affairs/tom-junod-falling-man-press-box-interview-9-11
1•gmays•44m ago•0 comments

SGS-1: a foundational model for CAD

https://www.spectrallabs.ai/research/SGS-1
1•rickcarlino•45m ago•0 comments

Is In-Context Learning Learning?

https://arxiv.org/abs/2509.10414
2•simonpure•48m ago•0 comments

A QBasic Text Adventure Still Expanding in 2025

https://the-ventureweaver.itch.io/
4•ATiredGoat•50m ago•1 comments

Boosting Model Performance with Reinforcement Fine-Tuning

https://hpc-ai.com/blog/Boost_Model_Performance_with_RFT
1•HappyTeam•56m ago•1 comments

Show HN: The text disappears when you screenshot it.

https://unscreenshottable.vercel.app/?text=Hello
6•zikero•57m ago•2 comments

Computer Networks: A Systems Approach

https://book.systemsapproach.org/index.html
2•tripdout•1h ago•0 comments

Show HN: Turn oil paintings into interactive story gifts

https://sendstories.zingandzap.com
1•erosss•1h ago•0 comments

No CSS, No JavaScript. Longevity on the Web

https://jch.github.io/posts/2025-09-18-no-css-no-js.html
2•jollyjerry•1h ago•0 comments

Anyone Can Cook

https://booplet.com/blog/anyone-can-cook/
1•greentfrapp•1h ago•0 comments

From the Diaries of John Henry, Book 7 – Inevitable

https://medium.com/from-the-diaries-of-john-henry/book-7-inevitable-fef0091f42c8
1•nicholast•1h ago•1 comments

Meta Connect 2025 [video]

https://www.youtube.com/watch?v=80s0chTOsK0
1•babelfish•1h ago•0 comments

"The End of Extractive AI: A Monograph on Presence" → Link to Zenodo

https://zenodo.org/records/17148689
1•antiparty•1h ago•0 comments

Slack is extorting us with a $195k/yr bill increase

https://skyfall.dev/posts/slack
342•JustSkyfall•1h ago•171 comments

Facebook Messenger inserting web links into regular text?

2•reassess_blind•1h ago•0 comments
Open in hackernews

Zig and GPUs

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

Comments

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