frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AWS Acquires DuckDB

https://ducklabs.com/news/2026/08/26/ducklabs-to-join-aws
595•onderkalaci•3h ago•152 comments

GLM-5.3-Flash

https://z.ai/blog/glm-5.3-flash
327•Philpax•2h ago•135 comments

Qwen3.8-Flash-Next: A New Architecture, Towards Ultimate Cost-Efficiency

https://qwen.ai/blog?id=qwen3.8-flash-next
341•tosh•3h ago•104 comments

Nebula Sans

https://www.nebulasans.com
71•GavinAnderegg•1h ago•28 comments

Disruption with Some GitHub Services

https://www.githubstatus.com/incidents/hcbtzksccj2f
82•blimmer•49m ago•44 comments

Taylor Farms: How One Company's Reach Became a National Risk

https://farmaction.us/taylorfarmsreport/
68•speckx•1h ago•26 comments

Launch HN: Risklytics (YC S26) – Insurance brokerage for frontier tech companies

https://www.risklytics.ai/
3•AlexRisio•3m ago•0 comments

GLM-5.3-Flash Intelligence, Performance and Price Analysis

https://artificialanalysis.ai/models/glm-5-3-flash
48•theanonymousone•1h ago•8 comments

France reaches 94.9% fiber coverage in 2026

https://cartefibre.arcep.fr
75•nehalem501•2h ago•21 comments

WebMCP: Teaching Your Website to Talk to AI Agents

https://sreenathmenon.com/blog/2026-08-04-webmcp-teaching-websites-to-talk-to-ai-agents/
33•sreenathmenon•1h ago•27 comments

You could have invented PageRank

https://praveshkoirala.com/2026/08/26/you-could-have-invented-pagerank/
31•pkoird•1h ago•14 comments

It's so hard to finish an idea that is not yours (and suggested by AI)

https://www.ssp.sh/brain/using-obsidian-with-ai/
9•zazuke•39m ago•1 comments

RAG Is Simpler Than You Think

https://www.lighthousenewsletter.com/p/rag-is-simpler-than-you-think
308•j0selit0•7h ago•135 comments

Proliferate (YC S25) Is Hiring

https://www.ycombinator.com/companies/proliferate/jobs/OgpCKYJ-founding-product-engineer
1•pablo24602•4h ago

Show HN: How much of Hacker News is AI?

https://hnstats.com
34•beekthos•1h ago•21 comments

A curmudgeon tries a language server

https://entropicthoughts.com/curmudgeon-tries-language-server
57•crescit_eundo•3h ago•36 comments

A Citation to Asimov

https://www.bookandsword.com/2026/08/25/a-citation-to-asimov/
19•speckx•2h ago•1 comments

Twitter Viewer – View Twitter Without Account

https://twitterwebviewer.com/
97•motownphilly•1h ago•34 comments

How HN: Qisutu – an open-source, self-hosted ticketing and service desk

https://github.com/qisutu/qisutu
15•OFORK•2h ago•2 comments

AI Is a Harsh Mistress

https://cacm.acm.org/opinion/ai-is-a-harsh-mistress-on-anima-machina-herd-acceptance-and-the-poli...
49•fscaramuzza•2h ago•29 comments

Oldinsurancemaps.net is now a Charter Project

https://openstreetmap.us/news/2026/08/oim-charter-project/
139•altilunium•7h ago•26 comments

AurionMail: E2EE suite (CryptPad/Stalwart) with single-password UX

https://github.com/AurionMail/docs
19•polo46•1h ago•0 comments

Take a Tour of SLAC

https://www6.slac.stanford.edu/public-tours
14•mooreds•1h ago•2 comments

Show HN: TexLite – A lightweight self-hosted LaTeX workspace

https://github.com/SWUFE-DB-Group/TexLite
7•thisispi•1h ago•0 comments

Z.ai confirms Ox Alpha is a new GLM-series model and will release its weights

https://www.bloomberg.com/news/articles/2026-08-26/china-s-z-ai-made-ox-alpha-stealth-model-that-...
357•garo-pro•6h ago•130 comments

A Man Who Saw Humanity from Two Billion Years Away

https://thereader.mitpress.mit.edu/the-man-who-saw-humanity-from-two-billion-years-away/
16•samizdis•2h ago•1 comments

Stalking the Wily Hacker: 40 years later – Cliff Stoll [video]

https://www.youtube.com/watch?v=656058JxTM0
206•zoenolan•4d ago•70 comments

Beyond Recall and the Illusion of Competence

https://var0.xyz/posts/beyond-recall-and-the-illusion-of-competence.html
67•tuxie_•6h ago•20 comments

Radiation link in flight attendant's breast cancer, French court finds

https://www.bbc.com/news/articles/cn0j3z6147jo
27•dazhbog•4h ago•6 comments

11,000-year-old sculpture of man riding a leopard found in Turkey

https://www.thehistoryblog.com/archives/76809
18•speckx•2h ago•4 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?