frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GPS Week Number Rollover

https://en.wikipedia.org/wiki/GPS_week_number_rollover
1•taubek•16s ago•0 comments

Did AI Hack HuggingFace?

https://www.youtube.com/watch?v=q2KCrmQz9WE
1•rustyhancock•1m ago•1 comments

Show HN: DynoTable – The DynamoDB GUI with real SQL and your AI agent

https://dynotable.com/
1•dynotable•4m ago•0 comments

Self Hosting LLMs with Llama.cpp

https://data4sci.substack.com/p/self-hosting-llms-with-llamacpp
1•Anon84•9m ago•0 comments

Building the enterprise environment for agentic AI

https://www.technologyreview.com/2026/07/27/1140668/building-the-enterprise-environment-for-agent...
2•joozio•10m ago•0 comments

Kids who own phones have poorer reading comprehension scores VS those who don't

https://phys.org/news/2026-07-kids-cellphones-poorer-comprehension-scores.html
2•Markoff•13m ago•1 comments

Show HN: BeatFlow: Codex skill for composing music as editable multi-track MIDI

https://github.com/the0cp/beatflow-skill
1•vaergawdd•14m ago•0 comments

Hypothetical Types of Biochemistry

https://en.wikipedia.org/wiki/Hypothetical_types_of_biochemistry
1•frozenseven•14m ago•0 comments

GPS Isn't a Solved Problem. Xona Space to Become Critical Infrastructure?

https://beyondhorizonforesight.substack.com/p/gps-isnt-a-solved-problemits-one
1•beyondhorizonfs•15m ago•0 comments

Mango – Modern IRC Client for Mac, iPhone and iPad

https://mangoirc.chat/
1•Tomte•17m ago•0 comments

Yahtzee Strategy

https://ballparkfigures.substack.com/p/yahtzee
1•muti•17m ago•0 comments

Show HN: Build an Avatar-Cursor Integration

https://lee-ai.com/
1•eschwalme•17m ago•0 comments

Kimi Linear: An Expressive, Efficient Attention Architecture

https://arxiv.org/abs/2510.26692
2•ronfriedhaber•19m ago•0 comments

Data Centers, 'Digital Twins' and Global Lockdown [video]

https://www.youtube.com/watch?v=vuNhsCuwpLY
1•Bender•19m ago•0 comments

Show HN: We analyzed 18k flashcard reviews from our app's usage data

https://studycardsai.com/blog/we-analyzed-18000-flashcard-reviews
1•charliegroves•20m ago•0 comments

The Prompt Atlas: a map of the games people ask an AI to build

https://rosebud.ai/prompt-atlas
1•vladgl94•23m ago•1 comments

Why I prefer Opus 5 to Fable 5

2•novlrdotcom•25m ago•1 comments

Gait Game

https://gait.game
1•artursapek•25m ago•4 comments

Engineering Community – Where the World of Engineering Comes Alive

https://engineeringcommunity.net/
1•jshprentz•29m ago•0 comments

When AI Makes 0-Days Feel Like N-Days

https://starlabs.sg/blog/2026/07-when-ai-makes-0-days-feel-like-n-days/
1•BeatrizPerez•31m ago•0 comments

Childhood exposure to pornography and the normalization of online exploitation

https://www.ovid.com/jnls/nursing/fulltext/10.1097/nsg.0000000000000432~childhood-exposure-to-por...
1•XzetaU8•31m ago•0 comments

A Japanese town wrestles with identity after protests over its first mosque

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

JetBrains's KotlinLLM is going open source

https://blog.jetbrains.com/research/2026/07/kotlinllm-open-source/
1•bundie•31m ago•0 comments

Ten years of generative adversarial nets (GANs)

https://iopscience.iop.org/article/10.1088/2632-2153/ad1f77
1•Anon84•35m ago•0 comments

Show HN: Grassroots Football, Live

https://unleague.site/
1•kunalsin9h•37m ago•0 comments

Show HN: Open-source Cloudflare deployed agent native task management and wiki

https://tajd.github.io/projektor/
2•tajd•37m ago•0 comments

LoopLynx: A Scalable Dataflow Architecture for Efficient LLM Inference

https://arxiv.org/abs/2504.09561
1•binyu•38m ago•0 comments

AI Coding is Exhausting [video]

https://www.youtube.com/shorts/e-pFrQ_Rh0s
1•deterministic•39m ago•2 comments

Workplaces Safer with Technology

https://www.channelnewsasia.com/singapore/workplace-safety-technology-ns-square-tuas-port-6275511
1•journey2s•40m ago•0 comments

How to Get More Customers to Your Website: Fix 3 Barriers

https://lazerg.uz/en/blog/saytga-mijoz-jalb-qilish
1•lazerg•40m 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.