frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Data Showing Palantir's Positive Impact on NHS Riddled with Errors

https://novaramedia.com/2026/07/13/data-showing-palantirs-positive-impact-on-nhs-riddled-with-err...
1•notRobot•44s ago•0 comments

Mako: A Self-Evolving Agentic Operating System for Autonomous Web Exploitation

https://arxiv.org/abs/2607.11288
1•praneethn•1m ago•0 comments

Google Images is getting a visual refresh as it turns 25

https://www.neowin.net/news/google-images-is-getting-a-visual-refresh-as-it-turns-25/
1•bundie•4m ago•0 comments

CoreWeave considers derivatives to hedge against falling memory prices

https://finance.yahoo.com/markets/options/articles/exclusive-ai-cloud-company-coreweave-235016062...
1•mapping365•5m ago•0 comments

Flap Display//SF Ferries

https://www.chloeyan.me/ferry
1•audreyfei•11m ago•0 comments

I thought I had a good homelab

https://humanparadox.org/i-thought-i-had-a-good-homelab/
1•colingauvin•11m ago•0 comments

Can't English be considered an indigenous Indian language, asks Supreme Court

https://www.thehindu.com/news/national/cant-english-be-considered-an-indigenous-indian-language-a...
2•thisislife2•11m ago•0 comments

Show HN: Timeline Studio – Open-source AI video editing

https://video-editor.ai-creator.top/
1•martindelophy•12m ago•0 comments

New $500M Artillery Shell Plant Failed to Produce Any 155mm Parts

https://www.twz.com/land/new-500m-artillery-shell-plant-failed-to-produce-any-155mm-parts
2•makerdiety•12m ago•0 comments

Show HN: PasteSheet – Turn a Google Sheet into a REST API and MCP Server

https://pastesheet.com
1•jaocero•15m ago•0 comments

FIFA World Cup 2026 · Data Portraits

https://wc26.bogachev.fr/
1•duck•17m ago•0 comments

The cost of AI-assisted development: cognitive fatigue

https://warpedvisions.org/blog/2025/hitting-the-wall-at-ai-speed/
1•o4c•20m ago•0 comments

6× faster binary search: from compiled code to mechanical sympathy

https://pythonspeed.com/articles/branchless-binary-search/
1•vinhnx•21m ago•0 comments

Jurassic Park computers in excruciating detail

https://fabiensanglard.net/jurrasic_park_computers/index.html
2•vinhnx•21m ago•0 comments

Australia creates world-first Office of AI

https://www.minister.industry.gov.au/t-ayres/media/ai-australias-interests
1•mrTeale•22m ago•0 comments

AI Agents: Hype vs. Reality (2024)

https://www.kadoa.com/blog/ai-agents-hype-vs-reality
1•vinhnx•23m ago•0 comments

GPT-5.6 Sol, Terra, Luna compare on intelligence vs. cost

https://artificialanalysis.ai/articles/gpt-5-6-intelligence-vs-cost-across-sol-terra-luna
3•theanonymousone•25m ago•0 comments

Weird password rules for website to register

1•guptadeepak•31m ago•1 comments

Code for the people: The human story of the open web

https://codeforthepeople.com/
1•wallflower•35m ago•0 comments

The math behind PrismML's 27B-parameter model in 4GB of RAM

https://thebluenarwhal.com/27-billion-parameters-on-an-iphone-why-on-device-ai-may-be-apples-next...
1•newyearsnight•35m ago•0 comments

Starlink V5

https://starlink.com/specifications/10
2•jtraglia•35m ago•0 comments

Show HN: Samosa Chat - Run Qwen3.6-35B-A3B Locally on a 16 GB Mac

https://github.com/deepanwadhwa/samosa-chat
5•dwa3592•47m ago•3 comments

Ptolemaic and LLM Architecture Compared (In 3D)

https://celestial-llm-mirror.vercel.app/
1•mikemangialardi•49m ago•0 comments

Dell Is on a Roll with the XPS

https://world.hey.com/dhh/dell-is-on-a-roll-with-the-xps-5a09a84e
2•dotcoma•50m ago•0 comments

GPT 5.6 Sol Pro disproves long-standing hypothesis in statistics

https://twitter.com/i/status/2077082912021786660
1•qsi•50m ago•1 comments

John Archibald Wheeler: It from Bit

https://en.wikipedia.org/wiki/John_Archibald_Wheeler
1•lioeters•55m ago•1 comments

Fix CSS Problems

https://www.fix-css.com/
1•ilreb•57m ago•0 comments

vLLM prefill paired with TileRT decode

https://vllm.ai/blog/2026-07-14-vllm-tilert-pd
2•ilreb•59m ago•0 comments

3k-year-old Egyptian tomb with vivid afterlife paintings uncovered near Luxor

https://www.euronews.com/culture/2026/07/14/3000-year-old-egyptian-tomb-with-vivid-afterlife-pain...
3•devonnull•1h ago•1 comments

White House launches AI cybersecurity clearinghouse

https://www.cnn.com/2026/07/14/tech/ai-cybersecurity-clearing-house-white-house
1•1659447091•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.