frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Kagi added a setting for removing paywalled links from search results

https://kagi.com/changelog#11296
725•speckx•4h ago•262 comments

Kobo can run apps now

https://bandarlabs.github.io/Cobalt/
98•thepoet•1h ago•30 comments

Felony Bench

https://www.felonybench.com/
148•colinprince•3h ago•60 comments

I accidentally logged hundreds of thousands of phone calls to military bases

https://lina.sh/blog/hijacking-e164-arpa
230•gavide•5h ago•31 comments

DeepSeek-v4-flash-vision-exp

https://api-docs.deepseek.com/guides/vision/
382•dares2573•7h ago•126 comments

When the shortage is the strategy

https://nooneshappy.com/article/when-the-shortage-is-the-strategy/
25•speckx•50m ago•7 comments

Rebuilding our Electron meeting-recording engine in Swift

https://circleback.ai/blog/how-we-rebuilt-our-electron-recording-engine-in-swift
17•arguiot•48m ago•1 comments

New Worlds: We are living in the future of J.G. Ballard or William Gibson

https://precastreinforced.co.uk/2026/08/16/new-worlds/
141•speckx•5h ago•88 comments

LiteLLM (YC W23) Is Hiring – Rust / Performance Engineers

https://jobs.ashbyhq.com/litellm/3f326076-7415-46a1-921e-8a1b1d6ee2b6
1•ij23•1h ago

AI boosted homework scores, then exam scores dropped: study

https://www.economist.com/graphic-detail/2026/08/18/does-ai-stop-children-from-learning
48•dash2•2d ago•132 comments

How we made a text-to-speech model respond in sub-50 ms

https://nari-labs.com/blog/qwen3-tts-speed-cost-frontier/
23•toebee•2h ago•5 comments

What happens when a GPU reads memory

https://blog.doubleword.ai/what-happens-when-a-gpu-reads-memory
34•ibobev•2h ago•3 comments

I ran Photoshop on a £0.60 computer chip

https://pointinthecloud.com/2026-08-19-144600.html
16•colinprince•3h ago•1 comments

Does whispering to agents in docs help?

https://passo.uno/if-you-are-an-agent-read-this/
19•theletterf•4d ago•4 comments

Quantifying the honey bee dance floor

https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0341456
10•Ariarule•1w ago•1 comments

Kodak's "pre-invented" lunar orbiter camera; or, the fate of SAMOS readout

https://invertingvision.com/2026/08/10/kodaks-pre-invented-lunar-orbiter-camera-or-the-fate-of-sa...
32•cainxinth•4h ago•0 comments

Another better lower bound for n=17 square packing

http://gus-massa.blogspot.com/2026/08/another-better-lower-bound-for-n17.html
11•gus_massa•1h ago•1 comments

Building an (almost) fully self-hosted, sandboxed, agentic software factory

https://blog.jakesaunders.dev/building-an-almost-fully-self-hosted-sandboxed-agentic-software-fac...
24•jakelsaunders94•1h ago•16 comments

Galactic Compass 2: now with new augmented reality mode

https://interconnected.org/home/2026/08/21/galactic
5•bobbiechen•51m ago•0 comments

The road to ACID transactions in Cassandra 6

https://theconsensus.dev/p/2026/08/16/transactions-in-cassandra.html
35•eatonphil•6h ago•1 comments

Radiation damage to Hubble has been 4.3 years out of phase with the Solar cycle

https://arxiv.org/abs/2608.18214
78•pppone•4h ago•26 comments

How orchids inspired the work of Charles Darwin

https://lithub.com/how-orchids-inspired-the-groundbreaking-work-of-charles-darwin/
6•prismatic•22h ago•0 comments

Decayfmt – a file format that corrupts itself a little every time you open it

https://github.com/aravpanwar/decayfmt
15•unprovable•2h ago•3 comments

Code Obfuscation via Local Mixing

https://vitalik.eth.limo/general/2026/08/21/obfuscation_part_iii_local_mixing.html
24•fbrusch•3h ago•1 comments

DuckDB V2 PEG-based SQL parser

https://duckdb.org/2026/08/20/duckdb-20-peg-parser
48•karma_daemon•5h ago•5 comments

Show HN: Proliferate- open-source, self-hostable Codex for any coding agent

https://github.com/proliferate-ai/proliferate
16•pablo24602•1h ago•6 comments

How I came to write that paper with Leslie Lamport

https://lawrencecpaulson.github.io//2026/08/21/Lamport.html
32•baruchel•3h ago•8 comments

New York’s office market is home to the most tech workers: CBRE report

https://www.cnbc.com/2026/08/21/new-york-san-francisco-tech-talent-cbre.html
21•toomuchtodo•2h ago•13 comments

LLMs are proof that Unix won

https://bastian.rieck.me/blog/2026/unix/
9•Pseudomanifold•2h ago•1 comments

Cancer-related mortality among US pilots and flight attendants

https://www.cnn.com/2026/08/19/health/flight-attendants-pilots-radiation-cancer-deaths
59•jader201•2h ago•62 comments
Open in hackernews

Faster sorting with SIMD CUDA intrinsics (2024)

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

Comments

ashvardanian•1y 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•1y 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•1y 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•1y 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•1y ago
Parallel compares: https://graphics.stanford.edu/~seander/bithacks.html#ZeroInW...
DennisL123•1y 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•1y 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•1y 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•1y 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•1y ago
As someone who doesn't know very much about graphics (ironically), you're welcome and hope it helps!
fourseventy•1y ago
What are the biggest use cases of GPU accelerated sorting?