DotMP
Class List
Here are the classes, structs, unions and interfaces with brief descriptions:
[detail level 1234]
 NDotMP
 NExceptions
 CNotInParallelRegionExceptionException thrown if a parallel-only construct is used outside of a parallel region
 CCannotPerformNestedParallelismExceptionException thrown if a Parallel.ParallelRegion is created inside of another Parallel.ParallelRegion
 CCannotPerformNestedWorksharingExceptionException thrown if a Parallel.Single is created inside of a Parallel.For or Parallel.ForReduction<T>
 CInvalidArgumentsExceptionException thrown if invalid arguments are specified to DotMP functions
 CTooManyIterationsExceptionException thrown if a for loop has too many iterations and would cause the schedulers to fail
 CImproperTaskwaitUsageExceptionException thrown if the wrong taskwait overload was used from within a task
 CInternalSchedulerExceptionException thrown if the internal schedulers encounter an overflow
 NGPU
 CAcceleratorHandlerThe handler class managing GPU acceleration
 CBufferBuffer to manage GPU memory. Should only be created on the CPU
 CParallelThe main class of DotMP's GPU API, powered by the ILGPU project. Contains all the main methods for constructing and running GPU kernels. The GPU API is not thread-safe at the current moment, so its methods should not be called from within a Parallel.ParallelRegion!
 CGPUArrayWrapper object for representing arrays on the GPU
 CIndexRepresents an index passed as the first index argument
 NSchedulers
 CStaticSchedulerImplementation of static scheduling
 CIterWrapperStruct to ensure that the curr_iter variables cannot reside on the same cache line. Avoids false sharing bottlenecks
 CDynamicSchedulerImplementation of dynamic scheduling
 CGuidedSchedulerImplementation of guided scheduling
 CRuntimeSchedulerPlaceholder for the runtime scheduler. Is not meant to be called directly. The Parallel.FixArgs method should detect its existence and swap it out for another scheduler with implementations
 CWorkStealingSchedulerImplementation of work-stealing scheduling
 CQueueQueue struct, ensuring that no two values share a cache line. This avoids false sharing issues
 CAtomicProvides atomic operations for integral types as a wrapper around the Interlocked class. Adds support for signed and unsigned 32- and 64-bit integers. Supports addition, subtraction (for signed types), increment, decrement, bitwise And, and bitwise Or
 CForActionClass encapsulating all of the possible callbacks in a Parallel.For-style loop. This includes Parallel.For, Parallel.ForReduction<T>, Parallel.ForCollapse, and Parallel.ForReductionCollapse<T>
 CIntWrapperWrapper around integers as a reference type
 CDAGDAG for maintaining task dependencies
 CRegionContains relevant internal information about parallel regions, including the threads and the function to be executed. Provides a region-wide lock and SpinWait objects for each thread
 CForkedRegionContains the Region object and controls for creating and starting a parallel region
 CLockA lock that can be used in a parallel region. Also contains instance methods for locking. Available methods are Set, Unset, and Test
 CParallelThe main class of DotMP. Contains all the main methods for parallelism. For users, this is the main class you want to worry about, along with Lock, Shared, Atomic, and GPU
 CISchedulerInterface for user-defined schedulers
 CScheduleRepresents the various scheduling strategies for parallel for loops. Detailed explanations of each scheduling strategy are provided alongside each getter. If no schedule is specified, the default is Schedule.Static
 CSectionsContainerStatic class that contains necessary information for sections. Sections allow for the user to submit multiple actions to be executed in parallel. A sections region contains a collection of actions to be executed, specified as Parallel.Section directives. More information can be found in the Parallel.Sections documentation
 CSharedA shared variable that can be used in a parallel region. This allows for a variable to be declared inside of a parallel region that is shared among all threads, which has some nice use cases
 CSharedEnumerableA specialization of Shared for items that can be indexed with square brackets. The DotMP-parallelized Conjugate Gradient example shows this off fairly well inside of the SpMV function
 CTaskingContainerA simple container for a Queue<Action> for managing tasks. Will grow in complexity as dependencies are added and a dependency graph must be generated
 CTaskUUIDTask UUID as returned from Parallel.Task
 CWorkShareContains all relevant information about a parallel for loop. Contains a collection of Thr objects, the loop's start and end iterations, the chunk size, the number of threads, and the number of threads that have completed their work
 NDotMPTests
 CCPUTestsCPU tests for the DotMP library
 CSerialCustom scheduler which runs a for loop in serial
 CGPUTestsGPU tests for the DotMP library