DotMP 2.0.0-pre1.1

Suggested Alternatives

DotMP 2.0.0-pre1.2

Additional Details

This package lacks proper release notes. Please use 2.0.0-pre1.2.

This is a prerelease version of DotMP.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package DotMP --version 2.0.0-pre1.1
                    
NuGet\Install-Package DotMP -Version 2.0.0-pre1.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DotMP" Version="2.0.0-pre1.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DotMP" Version="2.0.0-pre1.1" />
                    
Directory.Packages.props
<PackageReference Include="DotMP" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DotMP --version 2.0.0-pre1.1
                    
#r "nuget: DotMP, 2.0.0-pre1.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package DotMP@2.0.0-pre1.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DotMP&version=2.0.0-pre1.1&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=DotMP&version=2.0.0-pre1.1&prerelease
                    
Install as a Cake Tool

DotMP

Nuget Build Tests Quality Codecov All Contributors

DotMP logo

A library for writing OpenMP-style parallel code in .NET. Inspired by the fork-join paradigm of OpenMP, and attempts to replicate the OpenMP programming style as faithfully as possible, though breaking spec at times.

Prior users of OpenMP should find DotMP to be fairly intuitive, though there are some important differences.

The repository and all source code can be found here. For extensive documentation (including documentation of internal and private methods), an up-to-date copy of the Doxygen docs is hosted here. For a comprehensive tutorial on DotMP, check out the wiki.

Installing DotMP

Check out DotMP on NuGet.

DotMP can be installed from the NuGet command-line interface via the following command:

dotnet add package DotMP --version 1.6.1

You can also using the following PackageReference:

<PackageReference Include="DotMP" Version="1.6.1" />

Check the wiki for instructions on building DotMP from source.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
.NET Framework net471 is compatible.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.0.0-pre1.2 177 3/26/2024
2.0.0-pre1.1 158 3/26/2024 2.0.0-pre1.1 is deprecated because it has critical bugs.
2.0.0-pre1 207 3/26/2024 2.0.0-pre1 is deprecated because it has critical bugs.
1.6.1 471 11/27/2023
1.6.0 239 11/26/2023
1.6.0-pre2 215 11/21/2023
1.6.0-pre1 199 11/9/2023
1.5.0 278 10/25/2023
1.4.1 297 9/23/2023 1.4.1 is deprecated because it has critical bugs.
1.4.0 305 9/20/2023 1.4.0 is deprecated because it has critical bugs.

Add IScheduler interface for user-defined schedulers and work-stealing scheduler. Better atomics support. Performance improvements and bug fixes. Explicit support for .NET 8.