| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547 |
- // Parallel.cs
- //
- // Copyright (c) 2008 Jérémie "Garuma" Laval
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- //
- #if NET_4_0
- using System;
- using System.Collections.Generic;
- using System.Collections.Concurrent;
- using System.Threading;
- namespace System.Threading.Tasks
- {
- public static class Parallel
- {
- internal static int GetBestWorkerNumber ()
- {
- return GetBestWorkerNumber (TaskScheduler.Current);
- }
- internal static int GetBestWorkerNumber (TaskScheduler scheduler)
- {
- return scheduler.MaximumConcurrencyLevel;
- }
- static int GetBestWorkerNumber (int from, int to, ParallelOptions options, out int step)
- {
- int num = Math.Min (GetBestWorkerNumber (),
- options != null && options.MaxDegreeOfParallelism != -1 ? options.MaxDegreeOfParallelism : int.MaxValue);
- // Integer range that each task process
- if ((step = (to - from) / num) < 5) {
- step = 5;
- num = (to - from) / 5;
- if (num < 1)
- num = 1;
- }
- return num;
- }
- static void HandleExceptions (IEnumerable<Task> tasks)
- {
- HandleExceptions (tasks, null);
- }
- static void HandleExceptions (IEnumerable<Task> tasks, ParallelLoopState.ExternalInfos infos)
- {
- List<Exception> exs = new List<Exception> ();
- foreach (Task t in tasks) {
- if (t.Exception != null)
- exs.Add (t.Exception);
- }
- if (exs.Count > 0) {
- if (infos != null)
- infos.IsExceptional = true;
- throw new AggregateException (exs);
- }
- }
- static void InitTasks (Task[] tasks, int count, Action action, ParallelOptions options)
- {
- TaskCreationOptions creation = TaskCreationOptions.LongRunning;
- for (int i = 0; i < count; i++) {
- if (options == null)
- tasks [i] = Task.Factory.StartNew (action, creation);
- else
- tasks [i] = Task.Factory.StartNew (action, options.CancellationToken, creation, options.TaskScheduler);
- }
- }
- #region For
- public static ParallelLoopResult For (int from, int to, Action<int> action)
- {
- return For (from, to, ParallelOptions.Default, action);
- }
- public static ParallelLoopResult For (int from, int to, Action<int, ParallelLoopState> action)
- {
- return For (from, to, ParallelOptions.Default, action);
- }
- public static ParallelLoopResult For (int from, int to, ParallelOptions options, Action<int> action)
- {
- return For (from, to, options, (index, state) => action (index));
- }
- public static ParallelLoopResult For (int from, int to, ParallelOptions options, Action<int, ParallelLoopState> action)
- {
- return For<object> (from, to, options, () => null, (i, s, l) => { action (i, s); return null; }, _ => {});
- }
- public static ParallelLoopResult For<TLocal> (int from,
- int to,
- Func<TLocal> init,
- Func<int, ParallelLoopState, TLocal, TLocal> action,
- Action<TLocal> destruct)
- {
- return For<TLocal> (from, to, ParallelOptions.Default, init, action, destruct);
- }
- public static ParallelLoopResult For<TLocal> (int from,
- int to,
- ParallelOptions options,
- Func<TLocal> init,
- Func<int, ParallelLoopState, TLocal, TLocal> action,
- Action<TLocal> destruct)
- {
- if (action == null)
- throw new ArgumentNullException ("action");
- if (init == null)
- throw new ArgumentNullException ("localInit");
- if (destruct == null)
- throw new ArgumentNullException ("localFinally");
- if (options == null)
- throw new ArgumentNullException ("options");
- if (from >= to)
- return new ParallelLoopResult (null, true);
- // Number of task to be launched (normally == Env.ProcessorCount)
- int step;
- int num = GetBestWorkerNumber (from, to, options, out step);
- Task[] tasks = new Task [num];
- StealRange[] ranges = new StealRange[num];
- for (int i = 0; i < num; i++)
- ranges[i] = new StealRange (from, i, step);
- ParallelLoopState.ExternalInfos infos = new ParallelLoopState.ExternalInfos ();
- int currentIndex = -1;
- Action workerMethod = delegate {
- int localWorker = Interlocked.Increment (ref currentIndex);
- StealRange range = ranges[localWorker];
- int index = range.Actual;
- int stopIndex = localWorker + 1 == num ? to : Math.Min (to, index + step);
- TLocal local = init ();
- ParallelLoopState state = new ParallelLoopState (infos);
- CancellationToken token = options.CancellationToken;
- try {
- for (int i = index; i < stopIndex; range.Actual = ++i) {
- if (infos.IsStopped)
- return;
- token.ThrowIfCancellationRequested ();
- if (infos.LowestBreakIteration != null && infos.LowestBreakIteration > i)
- return;
- state.CurrentIteration = i;
- local = action (i, state, local);
- if (i >= stopIndex - range.Stolen)
- break;
- }
- // Try to steal from our right neighbor (cyclic)
- int len = num + localWorker;
- for (int sIndex = localWorker + 1; sIndex < len; ++sIndex) {
- int extWorker = sIndex % num;
- range = ranges[extWorker];
- stopIndex = extWorker + 1 == num ? to : Math.Min (to, from + (extWorker + 1) * step);
- int stolen;
- do {
- stolen = range.Stolen;
- if (stopIndex - stolen > range.Actual)
- goto next;
- } while (Interlocked.CompareExchange (ref range.Stolen, stolen + 1, stolen) != stolen);
- stolen = stopIndex - stolen - 1;
- if (stolen > range.Actual)
- local = action (stolen, state, local);
- next:
- continue;
- }
- } finally {
- destruct (local);
- }
- };
- InitTasks (tasks, num, workerMethod, options);
- try {
- Task.WaitAll (tasks);
- } catch {
- HandleExceptions (tasks, infos);
- }
- return new ParallelLoopResult (infos.LowestBreakIteration, !(infos.IsStopped || infos.IsExceptional));
- }
- class StealRange
- {
- public int Stolen;
- public int Actual;
- public StealRange (int from, int i, int step)
- {
- Actual = from + i * step;
- }
- }
- #endregion
- #region Foreach
- static ParallelLoopResult ForEach<TSource, TLocal> (Func<int, IList<IEnumerator<TSource>>> enumerable, ParallelOptions options,
- Func<TLocal> init, Func<TSource, ParallelLoopState, TLocal, TLocal> action,
- Action<TLocal> destruct)
- {
- int num = Math.Min (GetBestWorkerNumber (),
- options != null && options.MaxDegreeOfParallelism != -1 ? options.MaxDegreeOfParallelism : int.MaxValue);
- Task[] tasks = new Task[num];
- ParallelLoopState.ExternalInfos infos = new ParallelLoopState.ExternalInfos ();
- SimpleConcurrentBag<TSource> bag = new SimpleConcurrentBag<TSource> (num);
- const int bagCount = 5;
- IList<IEnumerator<TSource>> slices = enumerable (num);
- int sliceIndex = 0;
- Func<ParallelLoopState, bool> cancellationTokenTest = (s) => {
- if (options != null && options.CancellationToken.IsCancellationRequested) {
- s.Stop ();
- return true;
- }
- return false;
- };
- Action workerMethod = delegate {
- IEnumerator<TSource> slice = slices[Interlocked.Increment (ref sliceIndex) - 1];
- TLocal local = (init != null) ? init () : default (TLocal);
- ParallelLoopState state = new ParallelLoopState (infos);
- int workIndex = bag.GetNextIndex ();
- try {
- bool cont = true;
- TSource element;
- while (cont) {
- if (infos.IsStopped)
- return;
- if (cancellationTokenTest (state))
- return;
- for (int i = 0; i < bagCount && (cont = slice.MoveNext ()); i++) {
- bag.Add (workIndex, slice.Current);
- }
- for (int i = 0; i < bagCount && bag.TryTake (workIndex, out element); i++) {
- if (infos.IsStopped)
- return;
- if (cancellationTokenTest (state))
- return;
- local = action (element, state, local);
- }
- }
- while (bag.TrySteal (workIndex, out element)) {
- if (infos.IsStopped)
- return;
- if (cancellationTokenTest (state))
- return;
- local = action (element, state, local);
- }
- } finally {
- if (destruct != null)
- destruct (local);
- }
- };
- InitTasks (tasks, num, workerMethod, options);
- try {
- Task.WaitAll (tasks);
- } catch {
- HandleExceptions (tasks, infos);
- }
- return new ParallelLoopResult (infos.LowestBreakIteration, !(infos.IsStopped || infos.IsExceptional));
- }
- public static ParallelLoopResult ForEach<TSource> (IEnumerable<TSource> enumerable, Action<TSource> action)
- {
- return ForEach<TSource, object> (Partitioner.Create (enumerable), ParallelOptions.Default, null,
- (e, s, l) => { action (e); return null; }, null);
- }
- public static ParallelLoopResult ForEach<TSource> (IEnumerable<TSource> enumerable, Action<TSource, ParallelLoopState> action)
- {
- return ForEach<TSource, object> (Partitioner.Create (enumerable), ParallelOptions.Default, null,
- (e, s, l) => { action (e, s); return null; }, null);
- }
- public static ParallelLoopResult ForEach<TSource> (IEnumerable<TSource> enumerable,
- Action<TSource, ParallelLoopState, long> action)
- {
- return ForEach<TSource, object> (Partitioner.Create (enumerable), ParallelOptions.Default, null,
- (e, s, l) => { action (e, s, -1); return null; }, null);
- }
- public static ParallelLoopResult ForEach<TSource> (Partitioner<TSource> source,
- Action<TSource, ParallelLoopState> body)
- {
- return ForEach<TSource, object> (source, ParallelOptions.Default, null, (e, s, l) => { body (e, s); return null; }, null);
- }
- public static ParallelLoopResult ForEach<TSource> (OrderablePartitioner<TSource> source,
- Action<TSource, ParallelLoopState, long> body)
- {
- return ForEach<TSource, object> (source, ParallelOptions.Default, null, (e, s, i, l) => { body (e, s, i); return null; }, null);
- }
- public static ParallelLoopResult ForEach<TSource> (Partitioner<TSource> source,
- Action<TSource> body)
- {
- return ForEach<TSource, object> (source, ParallelOptions.Default, null, (e, s, l) => { body (e); return null; }, null);
- }
- public static ParallelLoopResult ForEach<TSource> (IEnumerable<TSource> source, ParallelOptions parallelOptions,
- Action<TSource> body)
- {
- return ForEach<TSource, object> (Partitioner.Create (source), parallelOptions, null,
- (e, s, l) => { body (e); return null; }, null);
- }
- public static ParallelLoopResult ForEach<TSource> (IEnumerable<TSource> source, ParallelOptions parallelOptions,
- Action<TSource, ParallelLoopState> body)
- {
- return ForEach<TSource, object> (Partitioner.Create (source), parallelOptions, null,
- (e, s, l) => { body (e, s); return null; }, null);
- }
- public static ParallelLoopResult ForEach<TSource> (IEnumerable<TSource> source, ParallelOptions parallelOptions,
- Action<TSource, ParallelLoopState, long> body)
- {
- return ForEach<TSource, object> (Partitioner.Create (source), parallelOptions,
- null, (e, s, i, l) => { body (e, s, i); return null; }, null);
- }
- public static ParallelLoopResult ForEach<TSource> (OrderablePartitioner<TSource> source, ParallelOptions parallelOptions,
- Action<TSource, ParallelLoopState, long> body)
- {
- return ForEach<TSource, object> (source, parallelOptions, null, (e, s, i, l) => { body (e, s, i); return null; }, null);
- }
- public static ParallelLoopResult ForEach<TSource> (Partitioner<TSource> source, ParallelOptions parallelOptions,
- Action<TSource> body)
- {
- return ForEach<TSource, object> (source, parallelOptions, null, (e, s, l) => {body (e); return null; }, null);
- }
- public static ParallelLoopResult ForEach<TSource> (Partitioner<TSource> source, ParallelOptions parallelOptions,
- Action<TSource, ParallelLoopState> body)
- {
- return ForEach<TSource, object> (source, parallelOptions, null, (e, s, l) => { body (e, s); return null; }, null);
- }
- public static ParallelLoopResult ForEach<TSource, TLocal> (IEnumerable<TSource> source, Func<TLocal> localInit,
- Func<TSource, ParallelLoopState, TLocal, TLocal> body,
- Action<TLocal> localFinally)
- {
- return ForEach<TSource, TLocal> ((Partitioner<TSource>)Partitioner.Create (source), null, localInit, body, localFinally);
- }
- public static ParallelLoopResult ForEach<TSource, TLocal> (IEnumerable<TSource> source, Func<TLocal> localInit,
- Func<TSource, ParallelLoopState, long, TLocal, TLocal> body,
- Action<TLocal> localFinally)
- {
- return ForEach<TSource, TLocal> (Partitioner.Create (source), null, localInit, body, localFinally);
- }
- public static ParallelLoopResult ForEach<TSource, TLocal> (OrderablePartitioner<TSource> source, Func<TLocal> localInit,
- Func<TSource, ParallelLoopState, long, TLocal, TLocal> body,
- Action<TLocal> localFinally)
- {
- return ForEach<TSource, TLocal> (source, ParallelOptions.Default, localInit, body, localFinally);
- }
- public static ParallelLoopResult ForEach<TSource, TLocal> (Partitioner<TSource> source, Func<TLocal> localInit,
- Func<TSource, ParallelLoopState, TLocal, TLocal> body,
- Action<TLocal> localFinally)
- {
- return ForEach<TSource, TLocal> (source, ParallelOptions.Default, localInit, body, localFinally);
- }
- public static ParallelLoopResult ForEach<TSource, TLocal> (IEnumerable<TSource> source, ParallelOptions parallelOptions,
- Func<TLocal> localInit,
- Func<TSource, ParallelLoopState, TLocal, TLocal> body,
- Action<TLocal> localFinally)
- {
- return ForEach<TSource, TLocal> (Partitioner.Create (source), parallelOptions, localInit, body, localFinally);
- }
- public static ParallelLoopResult ForEach<TSource, TLocal> (IEnumerable<TSource> source, ParallelOptions parallelOptions,
- Func<TLocal> localInit,
- Func<TSource, ParallelLoopState, long, TLocal, TLocal> body,
- Action<TLocal> localFinally)
- {
- return ForEach<TSource, TLocal> (Partitioner.Create (source), parallelOptions, localInit, body, localFinally);
- }
- public static ParallelLoopResult ForEach<TSource, TLocal> (Partitioner<TSource> enumerable, ParallelOptions options,
- Func<TLocal> init,
- Func<TSource, ParallelLoopState, TLocal, TLocal> action,
- Action<TLocal> destruct)
- {
- return ForEach<TSource, TLocal> (enumerable.GetPartitions, options, init, action, destruct);
- }
- public static ParallelLoopResult ForEach<TSource, TLocal> (OrderablePartitioner<TSource> enumerable, ParallelOptions options,
- Func<TLocal> init,
- Func<TSource, ParallelLoopState, long, TLocal, TLocal> action,
- Action<TLocal> destruct)
- {
- return ForEach<KeyValuePair<long, TSource>, TLocal> (enumerable.GetOrderablePartitions, options,
- init, (e, s, l) => action (e.Value, s, e.Key, l), destruct);
- }
- #endregion
- #region Invoke
- public static void Invoke (params Action[] actions)
- {
- if (actions == null)
- throw new ArgumentNullException ("actions");
- Invoke (actions, (Action a) => Task.Factory.StartNew (a));
- }
- public static void Invoke (ParallelOptions parallelOptions, params Action[] actions)
- {
- if (parallelOptions == null)
- throw new ArgumentNullException ("parallelOptions");
- if (actions == null)
- throw new ArgumentNullException ("actions");
- Invoke (actions, (Action a) => Task.Factory.StartNew (a, parallelOptions.CancellationToken, TaskCreationOptions.None, parallelOptions.TaskScheduler));
- }
- static void Invoke (Action[] actions, Func<Action, Task> taskCreator)
- {
- if (actions.Length == 0)
- throw new ArgumentException ("actions is empty");
- // Execute it directly
- if (actions.Length == 1 && actions[0] != null)
- actions[0] ();
- bool shouldThrow = false;
- Task[] ts = Array.ConvertAll (actions, delegate (Action a) {
- if (a == null) {
- shouldThrow = true;
- return null;
- }
- return taskCreator (a);
- });
- if (shouldThrow)
- throw new ArgumentException ("One action in actions is null", "actions");
- try {
- Task.WaitAll (ts);
- } catch {
- HandleExceptions (ts);
- }
- }
- #endregion
- #region SpawnBestNumber, used by PLinq
- internal static Task[] SpawnBestNumber (Action action, Action callback)
- {
- return SpawnBestNumber (action, -1, callback);
- }
- internal static Task[] SpawnBestNumber (Action action, int dop, Action callback)
- {
- return SpawnBestNumber (action, dop, false, callback);
- }
- internal static Task[] SpawnBestNumber (Action action, int dop, bool wait, Action callback)
- {
- // Get the optimum amount of worker to create
- int num = dop == -1 ? (wait ? GetBestWorkerNumber () + 1 : GetBestWorkerNumber ()) : dop;
- // Initialize worker
- CountdownEvent evt = new CountdownEvent (num);
- Task[] tasks = new Task [num];
- for (int i = 0; i < num; i++) {
- tasks [i] = Task.Factory.StartNew (() => {
- action ();
- evt.Signal ();
- if (callback != null && evt.IsSet)
- callback ();
- });
- }
- // If explicitely told, wait for all workers to complete
- // and thus let main thread participate in the processing
- if (wait)
- Task.WaitAll (tasks);
- return tasks;
- }
- #endregion
- }
- }
- #endif
|