• R/O
  • SSH

Commit

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


Commit MetaInfo

Revision9974a2cf9a56756a022fe48ac3702a2a72052707 (tree)
Time2021-06-15 22:27:07
AuthorEric Hopper <hopper@omni...>
CommiterEric Hopper

Log Message

Put copyright notices in source files.

Change Summary

Incremental Difference

diff -r 9fd31491d7ad -r 9974a2cf9a56 csort.c
--- a/csort.c Sat Dec 15 23:32:04 2018 -0800
+++ b/csort.c Tue Jun 15 06:27:07 2021 -0700
@@ -1,3 +1,7 @@
1+// Copyright 2018 by Eric Hopper
2+// This program is distributed under the terms of the GPLv3 or later, see
3+// LICENSE for more details.
4+
15 #include <stdlib.h>
26 #include <stdint.h>
37 #include <stdio.h>
diff -r 9fd31491d7ad -r 9974a2cf9a56 mysort.cpp
--- a/mysort.cpp Sat Dec 15 23:32:04 2018 -0800
+++ b/mysort.cpp Tue Jun 15 06:27:07 2021 -0700
@@ -1,3 +1,7 @@
1+// Copyright 2018 by Eric Hopper
2+// This program is distributed under the terms of the GPLv3 or later, see
3+// LICENSE for more details.
4+
15 #include <thread>
26 #include <algorithm>
37 #include <vector>