frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ultrafast neural sampling with spiking nanolasers

https://www.nature.com/articles/s41467-025-66818-1
1•PaulHoule•1m ago•0 comments

Show HN: Port Forwarding Wrapper for Mosh

https://github.com/liyu1981/moshpf
1•liyu1981au•2m ago•0 comments

GPL as the Best Licence – Governance and Philosophy

https://blog.hansenpartnership.com/gpl-as-the-best-licence-governance-and-philosophy/
1•pabs3•3m ago•0 comments

The Mystery of Asjo.org

https://acid.vegas/blog/the-mystery-of-asjo-org/
1•reubn•3m ago•0 comments

If Trump attacks Iran, western media will be cheering him on

https://www.middleeasteye.net/opinion/if-trump-attacks-iran-western-media-will-be-cheering-him
1•lyu07282•8m ago•0 comments

Say Goodbye to the Undersea Cable That Made the Global Internet Possible

https://www.wired.com/story/say-goodbye-to-the-undersea-cable-that-made-the-global-internet-possi...
1•CHB0403085482•9m ago•1 comments

We Made the Isospectral Drums and It Went Fine

https://prismika.github.io/2026/03/01/we-made-the-isospectral-drums.html
1•nill0•9m ago•0 comments

Floor113.com – A Scarcity-Driven Dating System Built on Deterministic Access

https://floor113.com/
1•chainbuilder•14m ago•1 comments

DeepSeek to release long-awaited AI model in new challenge to US rivals

https://www.ft.com/content/e3366881-0622-40a7-9c34-a0d82e3d573e
2•freely0085•14m ago•1 comments

The Boom in ADHD Coaching Has Few Rules

https://www.medscape.com/viewarticle/boom-adhd-coaching-has-few-rules-2026a10005iw
1•wjb3•15m ago•0 comments

Toward Guarantees for Clinical Reasoning in Vision Language Models

https://arxiv.org/abs/2602.24111
4•barthelomew•18m ago•2 comments

Mapping Human Activity at Sea from Space

https://globalfishingwatch.org/mapping-human-activity-at-sea-from-space/
1•femto•21m ago•0 comments

Ask HN: When do you expect ChatGPT moment in robotics?

1•p1esk•22m ago•0 comments

Why Rational Choice Theory Should Not Be the Standard for Good Decisions

https://behavioralscientist.org/why-rational-choice-theory-should-not-be-the-standard-for-good-de...
1•jyunwai•27m ago•0 comments

An Assistant with advanced memory and evolution functions

https://meet-edward.com
3•ben4mn•28m ago•2 comments

Show HN: Simaic – AI back end with memory, 90s setup for Cursor/Windsurf

https://www.simaic.com
1•sunch•31m ago•0 comments

Shipping code you don't read is like selling coffee you don't taste

https://anhvietle.substack.com/p/shipping-code-you-dont-read-is-like
4•haizzz•34m ago•0 comments

A Waymo vehicle blocked traffic as first responders raced to a mass shooting

https://twitter.com/Breaking911/status/2028160742755537397
2•guerrilla•35m ago•0 comments

Assorted links: clashes of tech and the US government

https://digitalseams.com/blog/assorted-links-2026-03-01
1•bobbiechen•36m ago•0 comments

How I Caught an Illegal Russian Spy

https://www.youtube.com/watch?v=xjo0iLssbI8
2•mudil•37m ago•1 comments

ASCII-cleaner – A zero-dependency Rust CLI to detect/remove non-ASCII

https://github.com/ancos2505/ascii-cleaner
1•ancos2505•41m ago•1 comments

The Summer Slide, part 3: The tax code we had

https://substack.com/@michaelwgreen/p-189483869
1•jez•42m ago•1 comments

NoEyes – Terminal-based, self-hosted end-to-end encrypted chat in Python

https://github.com/Ymsniper/NoEyes
1•Ymsniper•43m ago•0 comments

Show HN: Agent-Audit – Lint and cost-estimate your AI agent

https://github.com/AreteDriver/agent-audit
1•aretedriver•46m ago•0 comments

The growing corpus of problems that are 'easy' for entities which may not think

https://zjpea.substack.com/p/embarrassingly-solved-problems
2•zjp•48m ago•0 comments

Show HN: I built a fast mood, energy, and activity tracker (trilog.app)

https://trilog.app
1•saltroad•49m ago•0 comments

Claude hits #1 on the App Store as users rally behind Anthropic

https://9to5mac.com/2026/03/01/claude-hits-1-on-the-app-store-as-users-rally-behind-anthropics-go...
14•doctoboggan•51m ago•4 comments

Earn Compute Credits

https://www.hpc-ai.com/blog/Share-And-Earn-Social-Media-Campaign
1•hpcaitech•52m ago•0 comments

Secure LLM Scripting. Finally

https://mlld.ai/
2•dahjelle•56m ago•0 comments

RunWatch – CI/CD Observability for GitHub and GitLab

https://runwatch.io
1•toconnor•56m ago•1 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.