frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Go Players Disempower Themselves to AI

https://www.lesswrong.com/posts/nR3DkyivzF4ve97oM/how-go-players-disempower-themselves-to-ai
1•cubefox•24s ago•0 comments

I clustered 3,847 public comments on the Santa Ynez offshore EIS

https://www.envirodocket.com/projects/santa-ynez-unit-resumption-eis
1•scarsam•6m ago•0 comments

Watch NASA test its new X-59 jet designed to go faster than the speed of sound

https://www.scientificamerican.com/video/watch-nasa-test-its-new-x-59-jet-designed-to-go-faster-t...
1•beardyw•9m ago•1 comments

SpaceX ISS Docking SIM

https://iss-sim.spacex.com/
1•CubicalOrange•9m ago•0 comments

Show HN: TurnZero – Persistent Expert for LLMs

1•dmilicev2•11m ago•0 comments

Wine 11.8 – Run Windows Applications on Linux, BSD, Solaris and macOS

https://www.winehq.org/announce/11.8
1•neustradamus•14m ago•0 comments

Show HN: Formattery – on-device file converter for iPhone, iPad, and Mac

https://apps.apple.com/es/app/formattery-convertir-archivos/id6759955312
1•alEscarcha•15m ago•0 comments

Ask HN: Should AI agents have their own legal entities?

1•LRG-H•16m ago•2 comments

Show HN: Hollow is an open-sourced self-modifying agentic system

https://github.com/ninjahawk/hollow-agentOS
2•ninjahawk1•19m ago•0 comments

Show HN: Create the right image sizes for social media

https://skills.sh/branding5/social-media-image-sizes/social-media-image-sizes
1•mnewme•19m ago•0 comments

Open source ballistic simulator with NASA SRTM terrain masking (Python/C#)

https://github.com/InsaneInfinity/Balistic
1•insane_infinity•20m ago•0 comments

Show HN: Glacier – A zero-config macOS terminal I vibecoded in Rust

https://github.com/pranjolm/glacier-terminal
1•ArqueNova•34m ago•0 comments

Microsoft Now Recommends 32 GB RAM as a "No Worries" Upgrade for Windows 11

https://www.techpowerup.com/348715/microsoft-now-recommends-32-gb-ram-as-a-no-worries-upgrade-for...
2•SockThief•38m ago•0 comments

I tell about my blog to anyone willing to listen

https://hamatti.org/posts/i-tell-about-my-blog-to-anyone-willing-to-listen/
1•Tomte•40m ago•0 comments

The Java 21 virtual threads and AI hype is half-true

https://old.reddit.com/r/java/comments/1t1fegr/the_java_21_virtual_threads_ai_hype_is_halftrue/
1•Tomte•42m ago•0 comments

Show HN: Agent with its own computer on the cloud

https://pulsarbot.cloud/
1•akshayballal95•47m ago•0 comments

NSA Warned Everyone to Reboot Their Routers

https://www.staysafeonline.org/articles/the-nsa-just-warned-everyone-to-reboot-their-routers-what...
3•saikatsg•53m ago•0 comments

Using Playwright to test my static sites

https://alexwlchan.net/2026/playwright/
1•ingve•58m ago•0 comments

It's a Weird Time to Be Named Claude

https://www.bloomberg.com/news/articles/2026-05-01/claude-ai-is-complicating-life-for-people-name...
3•helsinkiandrew•59m ago•0 comments

Cyber-Insecurity in the AI Era

https://www.technologyreview.com/2026/05/01/1136779/cyber-insecurity-in-the-ai-era/
1•joozio•59m ago•0 comments

Thrml - Probabilistic Compute Simulation on GPUs

https://docs.thrml.ai/en/latest/examples/01_all_of_thrml/
1•oldfuture•1h ago•0 comments

It's super weird, super odd, super rare: meet the twins who have different dads

https://www.theguardian.com/lifeandstyle/2026/may/02/rare-twins-different-dads-the-gift-bbc-radio-4
2•helsinkiandrew•1h ago•0 comments

Interstellar comet came from a much different solar system than ours

https://www.cnn.com/2026/05/01/science/interstellar-comet-3i-atlas-deuterated-water
2•reconnecting•1h ago•0 comments

You'll Subscribe to Your Router, Too – The First Router Bribes Are Here [video]

https://www.youtube.com/watch?v=qjesRkTFZqY
1•stop50•1h ago•0 comments

DojoZero – AI Agent Sport Betting Arena

https://dojozero.live
1•ekzhu•1h ago•0 comments

RYBitten: Configurable RGB-to-RYB Mapping

https://rybitten.space/
2•lioeters•1h ago•0 comments

I was wrong about vibe coding on greenfield projects.

2•dokdev•1h ago•1 comments

Spirit Airlines Is Winding Down All Operations

https://www.spiritrestructuring.com/
43•CaliforniaKarl•1h ago•58 comments

Apple Stops Selling Mac Mini with 256GB of Storage

https://www.macrumors.com/2026/05/01/mac-mini-now-starts-at-799/
3•tosh•1h ago•0 comments

Solar farm lets cattle roam under moving panels

https://electrek.co/2026/05/01/solar-farm-lets-cattle-roam-under-moving-panels/
2•breve•1h 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.