🎉 Oh joy, another thrilling journey into the depths of #CUDA #intrinsics, as our brave author heroically tackles the burning issue of sorting faster! 🚀 Because who wouldn't want a detailed dissertation on an #algorithm called "bitonic sort" that promises to revolutionize... absolutely nothing in your daily life. 😅
https://winwang.blog/posts/bitonic-sort/ #BitonicSort #TechJourney #SortingAlgorithms #HackerNews #ngated
Faster sorting with SIMD CUDA intrinsics

Full code on Github: https://github.com/wiwa/blog-code/ Hi Link to heading Recently, I finished a batch at the Recurse Center… is what I would have said if this post were written when I intended to write it (i.e. 3 months ago). My project there focused on a questionable application of CUDA (mostly irrelevant to this post), but it got me thinking more about other GPU-friendly algorithms. Instead of my Recurse project (which I hope to write about in a later post), I want to simply begin writing about technical stuff I’ve played around with.

🚀💻 "I went to an #NVIDIA event, so naturally, my entire existence now revolves around repackaging basic sorting algorithms with #CUDA. Because, really, what else is parallel computing for besides impressing friends at parties? 🤓"
https://ashwanirathee.com/blog/2025/sort2/ #parallelcomputing #sortingalgorithms #techhumor #codinglife #HackerNews #ngated
Sorting Algorithms with CUDA! | Ashwani Rathee

A simple, whitespace theme for academics. Based on [*folio](https://github.com/bogoli/-folio) design.

3 ways to sort a list unique http://dlvr.it/THxzB3 via PlanetPowerShell #SortingAlgorithms #DataStructures #ProgrammingTips #Developers
3 ways to sort a list unique

Today I would like to show you a performance table comparing different ways to sort a list/array unique. Sometimes it is necessary to sort a list or an array unique to get rid of duplicates this can b...

DevDojo

🚀 Exciting news! I've just launched my new blog dedicated to all things IT! 📚🔧

Dive into my latest articles where I break down sorting algorithms like bubble, insertion, and selection sort. Join me on this tech journey and stay tuned for more! 💻✨

#TechBlog #SortingAlgorithms #Coding #Programming #IT

🔗 https://finnfreitag.com/informatics/blog/?utm_source=m

Blog | Finn Freitag

Blog articles around software development by Finn Freitag.

Blog | Finn Freitag
Bevor Sie zu YouTube weitergehen

#AI #AIAlgorithms #Algorithms #DeepMind #AlphaDev #ComputerScience #SortingAlgorithms: "DeepMind published its results in Nature today. But the techniques that AlphaDev discovered are already being used by millions of software developers. In January 2022, DeepMind submitted its new sorting algorithms to the organization that manages C++, one of the most popular programming languages in the world, and after two months of rigorous independent vetting, AlphaDev’s algorithms were added to the language. This was the first change to C++’s sorting algorithms in more than a decade and the first update ever to involve an algorithm discovered using AI.

DeepMind added its other new algorithms to Abseil, an open-source collection of prewritten C++ algorithms that can be used by anybody coding with C++. These cryptography algorithms compute numbers called hashes that can be used as unique IDs for any kind of data. DeepMind estimates that its new algorithms are now being used trillions of times a day."

https://www.technologyreview.com/2023/06/07/1074184/google-deepmind-game-ai-alphadev-algorithm-code-faster

Google DeepMind’s game-playing AI just found another way to make code faster

The AI-generated algorithms are already being used by millions of developers.

MIT Technology Review
Linear-Time Sorter for FPGAs

Sorting Algorithms might be an old hat for computer scientists, but running times on the fastest of these algorithms is usually O(Nlog(N)) on a single core. I thought, with an FPGA, why not try a parallel approach in hardware to bring the running time down to O(N)? A few head-scratching evenings later–behold–the Linear-Time-Sorter was born! I’m jazzed to mock this up as an SPI-peripheral for a microcontroller. Feel free to make use of the source files as you need.