frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I built a Steak Timer app after getting tired of juggling multiple timers

https://play.google.com/store/apps/details?id=com.akshatpandey.steaktimer&hl=en_US
1•scionhat•1m ago•0 comments

RealityPatch – OpenAI-compatible gateway to mainland China-hosted LLMs

https://api.realitypatch.net
1•yangzhou-tech•2m ago•0 comments

Building a 350M Transformer from Scratch in PyTorch

https://john463212.substack.com/p/building-a-350m-transformer-from
1•Johnene•3m ago•0 comments

Ask HN: Are OSS projects allowing vibe-coding?

1•raphaelj•4m ago•0 comments

Celebrating 15 years of SAP's involvement in the OpenJDK

https://mostlynerdless.de/blog/2026/07/07/celebrating-15-years-of-saps-involvement-in-the-openjdk/
1•Tomte•6m ago•0 comments

Beijing is looking at curbing overseas access to China's top AI models

https://www.reuters.com/world/beijing-is-looking-curbing-overseas-access-chinas-top-ai-models-sou...
3•eis•6m ago•1 comments

Are We AI Yet?

https://data.stackexchange.com/stackoverflow/query/1953321/are-we-ai-yet#graph
1•pelagicAustral•8m ago•0 comments

HTTP Status Codes and SEO

https://urlwatch.io/blog/http-status-codes.php
1•mssblogs•9m ago•0 comments

An allegory on technical debt, hiring, and product requirements

https://carette.xyz/posts/a_story_of_screwdriver_drivers/
1•weird_trousers•10m ago•0 comments

Top researchers leave USA for the Netherlands (in Dutch)

https://www.nwo.nl/nieuws/eerste-internationale-wetenschappers-via-het-tulp-fonds-naar-nederland
1•28304283409234•10m ago•0 comments

Transforming Wild

https://wild.gr/story/2
1•djnaraps•11m ago•0 comments

A Script for Mark Zuckerberg

https://stratechery.com/2026/a-script-for-mark-zuckerberg/
1•chrisvalleybay•12m ago•0 comments

Why migrants come to Germany for work and then leave again

https://www.dw.com/en/germany-migrants-skilled-workers-integration-labor-market-bureaucracy-langu...
4•theanonymousone•15m ago•0 comments

Money Magician – AI financial co-pilot for founders (not a budgeting app)

https://moneymagician.eu
1•carolinev•15m ago•0 comments

Tamp – shows when another app is keeping your Mac awake

https://tamp.kybernaut.cz/
1•vyskoczilova•17m ago•0 comments

Show HN: A simple random animal generator

https://randomanimalgen.com
1•mark_literacy•17m ago•0 comments

Search movies across all your streaming services

https://memovee.com/posts/search-across-your-streaming-services
1•zacksiri•18m ago•0 comments

Introduction to Algorithms and Machine Learning from Sorting to Strategic Agents [pdf]

https://www.justinmath.com/files/introduction-to-algorithms-and-machine-learning.pdf
1•Anon84•20m ago•0 comments

Show HN: A read-only MCP server for WooCommerce

https://github.com/wppoland/woocommerce-mcp
1•motylanogha•24m ago•0 comments

The hard part was never the model

https://jenniferjiangkells.substack.com/p/the-hard-part-was-never-the-model
1•adjks•27m ago•0 comments

Top banking watchdogs issue stark warning over AI-driven cyber attacks

https://www.ft.com/content/304cdbb9-c161-4e40-af4d-6df1d2ff5363
2•thm•29m ago•0 comments

Show HN: Formester – a form builder with no limits on forms or submissions

https://formester.com/
1•whitefang•33m ago•1 comments

Missing women on Indian streets [pdf]

https://gsood.com/research/papers/missing_women.pdf
1•like_any_other•36m ago•1 comments

ABC Australia will trial using AI for journalism

https://theconversation.com/abc-will-trial-using-ai-for-journalism-what-are-the-risks-and-benefit...
1•Alien1Being•37m ago•0 comments

Ask HN: Is Email Marketing Dead?

2•akashwadhwani35•38m ago•2 comments

The first American autonomous ground vehicles are fighting in Ukraine

https://techcrunch.com/2026/07/07/the-first-american-autonomous-ground-vehicles-are-fighting-in-u...
1•arnejenssen•39m ago•0 comments

Prevail – open-source AI "life OS" (not for your job)

https://prevail.sh/
2•mrlou•41m ago•0 comments

Shell Has a Forth-Like Quality

https://www.oilshell.org/blog/2017/01/13.html
1•ingve•45m ago•0 comments

Show HN: Brianni – AI chat on GPT/Claude/Gemini that we can't read (provable)

https://brianni.co/blog/prove-were-not-lying
1•iosazee•48m ago•0 comments

Ask HN: What are your favorite games?

3•freedomben•49m 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.