frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AbstractSingletonProxyFactoryBean

https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/aop/framewor...
1•Svetlitski•2m ago•0 comments

Lessons learned from the fate of AstraZeneca's drug pipeline

https://pubmed.ncbi.nlm.nih.gov/24833294/
1•brandonb•5m ago•0 comments

Eclipse locator: find the best place to see the eclipse

https://jdlm.info/eclipse-locator/
1•jdleesmiller•5m ago•1 comments

Killed for Inventing, Except He Wasn't

https://www.minid.net/2003/12/9/killed-by-inventing
1•meerita•8m ago•0 comments

Watching Roku's AI channel is like eating from a trough

https://www.theverge.com/entertainment/976939/roku-fairground-ai-fast-channel
2•pavel_lishin•9m ago•0 comments

Introducing Unsloth Desktop

https://unsloth.ai/docs/desktop
1•kgwgk•10m ago•0 comments

Elevator Music [video]

https://www.youtube.com/watch?v=jj0ChLVTpaA
1•doener•11m ago•0 comments

Jiffies: The Heartbeat of the Linux Operating System

https://blogs.oracle.com/linux/jiffies-the-heartbeat-of-the-linux-operating-system
1•ankitg12•13m ago•0 comments

mmiotic: Latency x-ray for undocumented hardware

https://github.com/xoreaxeaxeax/mmiotic
2•matt_d•14m ago•0 comments

Hoover Dam Is Losing Power as the Colorado River Crisis Deepens

https://www.popularmechanics.com/science/energy/a73357713/hoover-dam-power-crisis/
1•tortilla•15m ago•0 comments

MonoMap – Minimalist mind mapping app

https://monomap.app/
1•saturn5k•15m ago•0 comments

We use prototyping only for storytelling

https://app.productnow.ai/public/doc/dbxb-jsqz-jven
1•kadhirvelm•16m ago•1 comments

US hires over 2k video gamers as air traffic controllers

https://www.cbsnews.com/news/video-gamer-air-traffic-controllers-faa-recruitment-sean-duffy/
2•shagie•16m ago•0 comments

AI Adoption Is a Myth

https://twitter.com/vasuman/status/2085806422072418632
1•gmays•19m ago•0 comments

To Improve Student Mental Health, University of Michigan Eases Grading

https://www.nytimes.com/2026/08/11/us/university-michigan-grades-freshmen-pass-fail.html
1•ilamont•20m ago•0 comments

How Distressed Are Consumers? Reconciling Credit Card Delinquency Measures

https://libertystreeteconomics.newyorkfed.org/2026/08/how-distressed-are-consumers-reconciling-di...
1•jnord•21m ago•0 comments

Dark mode toggles: two states are enough

https://lea.verou.me/blog/2026/dark-mode-toggles/
1•birdculture•22m ago•0 comments

Chrome Manifest V2 extensions stop working August 31 – what breaks

https://news.ycombinator.com/submit
1•FrontBuffer_FB•23m ago•0 comments

2026 Solar Eclipse Airbnb effect

https://www.airroi.com/blog/eclipse-2026-spain-iceland-airbnb-occupancy
1•airjason•24m ago•0 comments

Japanese authorities use new tool to identify initial torrent uploaders

https://www.tomshardware.com/tech-industry/cyber-security/initial-seeder-on-popular-anime-torrent...
2•debo_•25m ago•0 comments

Do-178B

https://en.wikipedia.org/wiki/DO-178B
1•gregsadetsky•27m ago•0 comments

GB300 DGX Station: What 748GB of Coherent Memory Buys

https://www.gpupartner.com/blog/gb300-dgx-station-what-748gb-actually-buys
1•Retell15•28m ago•0 comments

A guided tour of Terraform state, hosted modules, and HCL in Pulumi

https://www.pulumi.com/blog/terraform-to-pulumi-cloud-hands-on/
1•cnunciato•28m ago•0 comments

Jaithon 3, a fast programming language with the perfect syntax

https://github.com/abhiramasonny/jaithon
1•AbhiramaVS•29m ago•1 comments

The Unseen Delta: Characterizing the Compiler Optimization Landscape

https://arxiv.org/abs/2608.09530
1•matt_d•29m ago•0 comments

Digital Waste

https://store.steampowered.com/app/4895540/Digital_Waste/
1•debo_•29m ago•1 comments

ICE plans to give officers gloves that can deliver painful electric shocks

https://apnews.com/article/ice-electric-shock-gloves-85ff746d3e0ee5f39e7a9a3f1f576252
5•petethomas•30m ago•0 comments

SecretSpec 0.19: Moving and importing secrets between providers

https://secretspec.dev/blog/secretspec-0-19-moving-and-importing-secrets-between-providers/
1•domenkozar•30m ago•0 comments

Show HN: Frontier.fast – Help push the frontier of LLM speed forward

https://frontier.fast/
1•carsenk•32m ago•0 comments

Proofs and Prompts

https://proofsandprompts.com/
1•pykello•35m 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.