frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

FAWK: LLMs can write a language interpreter

https://martin.janiczek.cz/2025/11/21/fawk-llms-can-write-a-language-interpreter.html
49•todsacerdoti•1h ago•16 comments

Olmo 3: Charting a path through the model flow to lead open-source AI

https://allenai.org/blog/olmo3
159•mseri•5h ago•29 comments

It's Hard to Build an Oscillator

https://lcamtuf.substack.com/p/its-hard-to-build-an-oscillator
65•chmaynard•4h ago•32 comments

I converted a rotary phone into a meeting handset

https://www.stavros.io/posts/i-converted-a-rotary-phone-into-a-meeting-handset/
30•todsacerdoti•1w ago•10 comments

Nano Banana Pro

https://blog.google/technology/ai/nano-banana-pro/
1086•meetpateltech•21h ago•617 comments

Android and iPhone users can now share files, starting with the Pixel 10

https://blog.google/products/android/quick-share-airdrop/
699•abraham•19h ago•415 comments

Roundtable (YC S23) Is Hiring Two Sales Development Representatives (SDRs)

https://www.ycombinator.com/companies/roundtable/jobs/irJTEsg-sales-development-representative
1•timshell•16m ago

FEX-emu – Run x86 applications on ARM64 Linux devices

https://fex-emu.com/
213•open-paren•1w ago•84 comments

WebAssembly from the Ground Up

https://wasmgroundup.com/
137•gurjeet•5d ago•35 comments

Scientists now know that bees can process time, a first in insects

https://www.cnn.com/2025/11/12/science/bees-visual-stimulus-study-scli-intl
24•Brajeshwar•5d ago•13 comments

HP and Dell disable HEVC support built into their laptops' CPUs

https://arstechnica.com/gadgets/2025/11/hp-and-dell-disable-hevc-support-built-into-their-laptops...
58•latexr•2h ago•20 comments

Show HN: 32V TENS device from built from scratch under $100

https://littlemountainman.github.io/2025/11/17/tens/
31•autonomydriver•3d ago•5 comments

Over-regulation is doubling the cost

https://rein.pk/over-regulation-is-doubling-the-cost
224•bilsbie•13h ago•413 comments

New OS aims to provide (some) compatibility with macOS

https://github.com/ravynsoft/ravynos
238•kasajian•15h ago•121 comments

Data-at-Rest Encryption in DuckDB

https://duckdb.org/2025/11/19/encryption-in-duckdb
184•chmaynard•16h ago•20 comments

The Qtile Window Manager: A Python-Powered Tiling Experience

https://tech.stonecharioteer.com/posts/2025/qtile-window-manager/
13•stonecharioteer•4h ago•3 comments

Okta's NextJS-0auth troubles

https://joshua.hu/ai-slop-okta-nextjs-0auth-security-vulnerability
315•ramimac•3d ago•119 comments

NTSB Preliminary Report – UPS Boeing MD-11F Crash [pdf]

https://www.ntsb.gov/Documents/Prelimiary%20Report%20DCA26MA024.pdf
180•gregsadetsky•17h ago•196 comments

The Lions Operating System

https://lionsos.org
172•plunderer•17h ago•46 comments

Free interactive tool that shows you how PCIe lanes work on motherboards

https://mobomaps.com
218•tagyro•2d ago•50 comments

Terranova is lifting land out of flood zones using terraforming robots

https://www.terranova.inc/
4•Olshansky•5d ago•2 comments

Hilbert space: Treating functions as vectors

https://eli.thegreenplace.net/2025/hilbert-space-treating-functions-as-vectors/
73•signa11•1w ago•34 comments

Show HN: F32 – An Extremely Small ESP32 Board

https://github.com/PegorK/f32
256•pegor•1d ago•45 comments

Adversarial poetry as a universal single-turn jailbreak mechanism in LLMs

https://arxiv.org/abs/2511.15304
309•capgre•1d ago•157 comments

Historical Reasons

https://exple.tive.org/blarg/2025/11/11/historical-reasons-2/
20•speckx•1w ago•5 comments

Show HN: My hobby OS that runs Minecraft

https://astral-os.org/posts/2025/10/31/astral-minecraft.html
192•avaliosdev•3d ago•20 comments

CBP is monitoring US drivers and detaining those with suspicious travel patterns

https://apnews.com/article/immigration-border-patrol-surveillance-drivers-ice-trump-9f5d05469ce8c...
727•jjwiseman•16h ago•777 comments

Two recently found works of J.S. Bach presented in Leipzig [video]

https://www.youtube.com/watch?v=4hXzUGYIL9M#t=15m19s
152•Archelaos•3d ago•90 comments

GitHut – Programming Languages and GitHub (2014)

https://githut.info/
77•tonyhb•14h ago•28 comments

Interactive World History Atlas Since 3000 BC

http://geacron.com/home-en/
323•not_knuth•1d ago•134 comments
Open in hackernews

Faster sorting with SIMD CUDA intrinsics (2024)

https://winwang.blog/posts/bitonic-sort/
92•winwang•6mo ago
Code at https://github.com/wiwa/blog-code/

Comments

ashvardanian•6mo ago
The article covers extremely important CUDA warp-level synchronization/exchange primitives, but it's not what is generally called SIMD in the CUDA land .

Most "CUDA SIMD" intrinsics are designed to process a 32-bit data pack containing 2x 16-bit or 4x 8-bit values (<https://docs.nvidia.com/cuda/cuda-math-api/cuda_math_api/gro...>). That significantly shrinks their applicability in most domains outside of video and string processing. I've had pretty high hopes for DPX on Hopper (<https://developer.nvidia.com/blog/boosting-dynamic-programmi...>) instructions and started integrating them in StringZilla last year, but the gains aren't huge.

winwang•6mo ago
Oh wow, TIL, thanks. I usually call stuff like that SWAR, and every now-and-then I try to think of a way to (fruitfully) use it. The "SIMD" in this case was just an allusion to warp-wide functions looking like how one might use SIMD in CPU code, as opposed to typical SIMT CUDA.

Also, StringZilla looks amazing -- I just became your 1000th Github follower :)

ashvardanian•6mo ago
Thanks, appreciate the gesture :)

Traditional SWAR on GPUs is a fascinating topic. I've begun assembling a set of synthetic benchmarks to compare DP4A vs. DPX (<https://github.com/ashvardanian/less_slow.cpp/pull/35>), but it feels incomplete without SWAR. My working hypothesis is that 64-bit SWAR on properly aligned data could be very useful in GPGPU, though FMA/MIN/MAX operations in that PR might not be the clearest showcase of its strengths. Do you have a better example or use case in mind?

winwang•6mo ago
I don't -- unfortunately not too well-versed in this field! But I was a bit fascinated with SWAR after I randomly thought of how to prefix-sum with int multiplication, later finding out that it is indeed an old trick as I suspected (I'm definitely not on this thread btw): https://mastodon.social/@dougall/109913251096277108

As for 64-bit... well, I mostly avoid using high-end GPUs, but I was of the impression that i64 is just simulated. In fact, I was thinking of using the full warp as a "pipeline" to implement u32 division (mostly as a joke), almost like anti-SWAR. There was some old-ish paper detailing arithmetic latencies in GPUs and division was approximately more than 32x multiplication (...or I could be misremembering).

bobmcnamara•6mo ago
Parallel compares: https://graphics.stanford.edu/~seander/bithacks.html#ZeroInW...
DennisL123•6mo ago
Interesting stuff. Not sure if I read this right that it‘s 16 und 32 bit values of integers that get sorted. If yes, I‘d love to see if the GPU implementation can beat a competitive Radix sort implementation on a CPU.
winwang•6mo ago
It's 32 32-bit values which get sorted. I don't think a GPU sort would beat a CPU sort at this scale, even if you don't take kernel launch time into account. CPUs are simply too fast for (super-)small data, especially with AVX-512. But if we're talking about a larger amount of data, that would be a different story, i.e. as part of a normal gpu mergesort.
maeln•6mo ago
It is also useful if your data already lives on the GPU memory. For example, when you need to z-sort a bunch of particles in a 3d renderer particle system.
exDM69•6mo ago
A 32 way GPU sorting algorithm might be just what I need for sorting and deduplicating triangle id's in a visibility buffer renderer I am working on.

Thanks for sharing.

winwang•6mo ago
As someone who doesn't know very much about graphics (ironically), you're welcome and hope it helps!
fourseventy•6mo ago
What are the biggest use cases of GPU accelerated sorting?