frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

1•lukasanderss•10s ago

Major open problem in percolation theory potentially solved with ChatGPT

https://philipeaso.com
1•doubledamio•37s ago•0 comments

US Supreme Court backs SEC in fight over 'disgorgement' power

https://www.reuters.com/world/us-supreme-court-backs-sec-fight-over-disgorgement-power-2026-06-04/
1•1vuio0pswjnm7•39s ago•0 comments

Shadcn plus HTMX for HTML/Jinja2/Hono/Elixir/Go

https://shadcn-htmx.productdevbook.com/
1•akagusu•1m ago•0 comments

An Inside View of the Davis-Bacon Act

https://www.factorysettings.org/p/an-inside-view-of-the-davis-bacon
1•surprisetalk•1m ago•0 comments

Columnar

https://crates.io/crates/columnar
1•tosh•1m ago•0 comments

The Jo Language: Secure Programming for the AI Era

https://jo-lang.org/
1•theanonymousone•2m ago•0 comments

Practical Data-Oriented Design in C++ [video]

https://www.youtube.com/watch?v=SzjJfKHygaQ
1•tosh•2m ago•0 comments

The Road to Zero Coding

https://docs.fused.io/shorts/zero-coding-002/
1•beezle•3m ago•0 comments

Agent per Human Notarization Protocol

https://github.com/squillo/aph
1•scott-b•3m ago•1 comments

Show HN: Zero deps C++ ASR binary for Linux (0MB idle RAM, no daemons, Unix way)

https://github.com/rccyx/asryx
2•rccyx•3m ago•0 comments

1989 Tiananmen Square protests and massacre

https://en.wikipedia.org/wiki/1989_Tiananmen_Square_protests_and_massacre
1•dredmorbius•5m ago•0 comments

Comparing SpaceX IPO against past offerings

https://flowingdata.com/2026/06/04/comparing-spacex-ipo-against-past-offerings/
3•thehoff•6m ago•0 comments

Linux Foundation Announces the Intent to Launch the Tokenomics Foundation

https://www.linuxfoundation.org/press/linux-foundation-announces-the-intent-to-launch-the-tokenom...
1•Tomte•7m ago•0 comments

AI Disrupted My YouTube Business. So I Got a Job [video]

https://www.youtube.com/watch?v=AQVyHXZWILo
1•chakintosh•7m ago•0 comments

Realm is a mobile database: an alternative to SQLite and key-value stores

https://github.com/realm/realm-js
1•thunderbong•7m ago•0 comments

FAA documents outline SpaceX plans for Starfall reentry vehicles – SpaceNews

https://spacenews.com/faa-documents-outline-spacex-plans-for-starfall-reentry-vehicles/
1•rbanffy•7m ago•0 comments

Beyondflow No-Code Multi-Agent Teams with Unlimited Runs. BYOK and Ollama

https://beyondflow.app
1•ALE_DIOLA_•7m ago•0 comments

Boeing 787 nose landing gear collapses at FRA

https://aerospaceglobalnews.com/news/lufthansa-boeing-787-nose-landing-gear/
2•raffael_de•8m ago•0 comments

Jacques Hadamard (1865 – 1963)

https://grokipedia.com/page/Jacques_Hadamard
1•__patchbit__•8m ago•0 comments

Revolut Founder Is Building a Launch Pad for a $76B Fortune

https://www.bloomberg.com/news/features/2026-06-02/how-revolut-s-founder-is-building-a-76-billion...
2•petethomas•9m ago•0 comments

Ask HN: Why is it still so hard for LLMs to query NoSQL databases?

1•cammasmith•9m ago•0 comments

The Outbox Pattern Visualized

https://dteather.com/blogs/the-outbox-pattern/
1•davidteather•11m ago•0 comments

New Chat Control meetings this June. As expected, this abomination won't go away

https://old.reddit.com/r/europe/comments/1tvwp5f/new_chat_control_meetings_this_june_as_expected/
1•nickslaughter02•13m ago•0 comments

Show HN: WASM with JIT from a Swift SPM Package

https://github.com/OpenCow42/swift-wasmtime
1•acoye•14m ago•0 comments

A Cheat Sheet for Attracting Private Sector Talent to Government

https://www.factorysettings.org/p/a-cheat-sheet-for-attracting-private
1•surprisetalk•16m ago•0 comments

Show HN: 178K Parameter Neural Net That Wins Poke(rogue)like

https://blog.thiagolira.com.br/i-got-so-mad-at-poke-rogue-like-that-i-trained-a-rl-agent-to-beat-...
1•farcaster•16m ago•0 comments

Keep Yourself Drain Ready

https://gr.ht/2023/08/08/keep-yourself-drain-ready.html
1•emerongi•17m ago•0 comments

MEPs urge European Commission to take action over Europol's shadow IT

https://www.computerweekly.com/news/366643585/MEPs-urge-European-Commission-to-take-action-over-E...
2•miohtama•20m ago•0 comments

Headroom

1•tashadir•21m 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.