frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Topological Adam: An experiment in energy-stabilized optimization

https://github.com/RRG314/topological-adam
1•sreid90•53s ago•0 comments

Pin Analysis

http://www.datagenetics.com/blog/september32012/index.html
1•WhyNotHugo•3m ago•0 comments

Apple shows how much faster the M5 runs local LLMs compared to the M4

https://9to5mac.com/2025/11/20/apple-shows-how-much-faster-the-m5-runs-local-llms-compared-to-the...
1•geoffbp•5m ago•0 comments

Daily logic puzzles with juicy gossipy themes

https://www.gossipdle.com
1•Qpphello•9m ago•1 comments

Breakthrough in Antimatter Production

https://home.cern/news/news/experiments/breakthrough-antimatter-production
3•thunderbong•12m ago•1 comments

New research reveals the cognitive hurdles created by our number systems

https://www.psypost.org/new-research-reveals-the-cognitive-hurdles-created-by-our-number-systems/
1•DrierCycle•21m ago•0 comments

Re-Centering Academics at Harvard College: Update on Grading and Workload [pdf]

https://chronicle.brightspotcdn.com/76/62/5e01812a413a8a50183c08dc71c5/harvard-grade-report.pdf
1•gmays•22m ago•0 comments

Iran president says capital move now a necessity as water crisis deepens

https://www.iranintl.com/en/202511209098
1•DrierCycle•25m ago•0 comments

Nvidia GPUs Compare to Google's and Amazon's AI Chips [video]

https://www.youtube.com/watch?v=RBmOgQi4Fr0
1•mgh2•25m ago•0 comments

Is there a webpage or service that tailor your style?

1•Joacooribe•34m ago•0 comments

Evidence suggests sex differences in the brain are ancient and evolutionary

https://www.psypost.org/evidence-suggests-sex-differences-in-the-brain-are-ancient-and-evolutionary/
1•DrierCycle•36m ago•0 comments

The housing strategy that has Beverly Hills NIMBYs in a corner

https://www.nytimes.com/2025/11/20/business/economy/california-housing-nimby.html
1•Izikiel43•36m ago•0 comments

Agoda 24-JAM Hubungi 0817395377

1•Outreach_Refer•36m ago•0 comments

Ask HN: Suggest tiny website ideas that I can build this Christmas holiday

1•ms7892•38m ago•0 comments

BranchEducation

https://www.youtube.com/channel/UCdp4_l1vPmpN-gDbUwhaRUQ
1•casey2•41m ago•0 comments

Call Center Agoda Reschedule

https://sites.google.com/view/nomor-call-center-agoda/bio
1•Outreach_Refer•43m ago•3 comments

Auditing JDBC Drivers at Scale with AI led to 85000 bounty

https://www.hacktron.ai/blog/jdbc-audit-at-scale
2•Mohansrk•45m ago•0 comments

Gemini 3 Tools System Prompt

https://gist.github.com/sshh12/ec2c7eb1ae5f156a9cdc8e7f8fef512f
1•sshh12•54m ago•0 comments

Show HN: I made yet another AI headshot app because the world needed one more

https://apps.apple.com/pt/app/ai-headshot-editor-glowtap/id6754992714
1•CarlosArthurr•57m ago•0 comments

Is Apple Intelligence Smart? We Tested Every Feature

https://www.steaktek.com/tech/is-apple-intelligence-actually-smart-we-tested-every-feature/
2•genuser•1h ago•1 comments

Microsoft Will Preload Windows 11 File Explorer to Fix Bad Performance

https://blogs.windows.com/windows-insider/2025/11/21/announcing-windows-11-insider-preview-build-...
31•ksec•1h ago•26 comments

Show HN: 12K Reddit posts scraped and AI-scored for startup ideas

https://search.reddit-business-ideas.workers.dev/
1•shadowjones•1h ago•0 comments

React Suite v6: A Steady Step Toward Modernization

https://medium.com/rsuite/react-suite-v6-a-steady-step-toward-modernization-2af78029978d
2•simonguo•1h ago•1 comments

Ask HN: Where can you find old NetBSD packages?

3•GaryBluto•1h ago•2 comments

Show HN: MoodLens – Provide insights about your emotional state

https://moodlens.aiwith.me/
1•struy•1h ago•0 comments

Cryptographers Held an Election. They Can't Decrypt the Results

https://www.nytimes.com/2025/11/21/world/cryptography-group-lost-election-results.html
3•ceejayoz•1h ago•0 comments

Empathetic, Available, Cheap: When A.I. Offers What Doctors Don't

https://www.nytimes.com/2025/11/16/well/ai-chatbot-doctors-health-care-advice.html
1•uxhacker•1h ago•0 comments

The death of tech idealism and rise of the homeless in Northern California

https://lithub.com/on-the-death-of-tech-idealism-and-rise-of-the-homeless-in-northern-california/
59•pseudolus•1h ago•14 comments

MCP Apps: Extending servers with interactive user interfaces

http://blog.modelcontextprotocol.io/posts/2025-11-21-mcp-apps/
2•raykyri•1h ago•0 comments

GrapheneOS accuses compeitors of sabotage, exits France over police threats

https://piunikaweb.com/2025/11/21/grapheneos-accuses-murena-iode-of-sabotage-pulls-servers-from-f...
7•RachelF•1h ago•0 comments
Open in hackernews

Zig and GPUs

https://alichraghi.github.io/blog/zig-gpu/
57•Cloudef•7mo ago

Comments

LegNeato•7mo ago
See also https://github.com/Rust-GPU/rust-gpu and https://github.com/rust-gpu/rust-cuda
ladyanita22•7mo 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•7mo ago
Microsoft indicated they are switching to SPIR-V from DXIL: https://devblogs.microsoft.com/directx/directx-adopting-spir...
skywal_l•7mo 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•7mo 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•7mo 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•7mo 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•7mo 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•7mo 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•7mo 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•7mo ago
The Zig compiler can compile C, though.