• R/O
  • SSH

コミット

タグ

よく使われているワード(クリックで追加)

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++


コミットメタ情報

リビジョンa1bbbd5ea63c394a8e460064c87df673f0dbdd3e (tree)
日時2018-12-16 16:23:53
作者Eric Hopper <hopper@omni...>
コミッターEric Hopper

ログメッセージ

Add a README

変更サマリ

差分

diff -r ed8c28789540 -r a1bbbd5ea63c README.md
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/README.md Sat Dec 15 23:23:53 2018 -0800
@@ -0,0 +1,10 @@
1+# C++ Parallel Sort Test #
2+
3+This is just me playing around with a simple parallelization for sorting
4+a large array of integers.
5+
6+I'm mostly please with how I used a queue to end the whole thing with a
7+set of maximally parallel merges.
8+
9+I also wrote a non-parallel version in C. C doesn't have widely
10+available portable threading.