• R/O
  • SSH

Repository summary

Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

A simple parallel sort as a demonstration of how easy (and fast) this is in C++


Recent Commits RSS

Rev. Time Author Message
9974a2cf9a56 2021-06-15 22:27:07 Eric Hopper tip Put copyright notices in source files.
9fd31491d7ad 2018-12-16 16:32:04 Eric Hopper It's GPLv3.
a1bbbd5ea63c 2018-12-16 16:23:53 Eric Hopper Add a README
ed8c28789540 2018-12-16 15:54:51 Eric Hopper Switched to using raw arrays instead of vectors. <obj si...
e36b2c2fcb58 2018-12-13 03:20:17 Eric Hopper Initial versions of a C sort vs. a C++ sort.

Recently edited Tags

Name Rev. Time Author
tip 9974a2cf9a56 2021-06-15 22:27:07 Eric Hopper

Branches

Name Rev. Time Author Message
default 9974a2cf9a56 2021-06-15 22:27:07 Eric Hopper Put copyright notices in so...

README.md

C++ Parallel Sort Test

This is just me playing around with a simple parallelization for sorting a large array of integers.

I'm mostly please with how I used a queue to end the whole thing with a set of maximally parallel merges.

I also wrote a non-parallel version in C. C doesn't have widely available portable threading.