How to enable Mono.Simd

I would like to use Simd in Mono, but the following code stands out as an error in MonDevop

using Mono.Simd

I already installed "Mono 2.8 for Windows", what else do I need to install to enable Mono.Simd?

This link http://tirania.org/blog/archive/2008/Nov-03.html It talks about tarbal, but after downloading it unpacks it (mono-Mono.Simd.Math-942e804), there are many cs files and no dll file.

+1
source share
3 answers

Have you added Mono.Simd.dll to the assembly? MonoDevelop correctly highlights the error because the collections you use do not have the Mono.Simd namespace. Mono.Simd.dll is included in recent Mono releases.

, Mono.Simd x86 amd64, Linux.

+3

Mono.Simd Mono . , 32 64- Linux. Windows, .

+1

MonoDevelop for Windows runs in the .NET environment, and Mono.Simd.dll, which comes with Mono 2.8, is installed in the Mono GAC.

You need to add the link to the project in the Mono.Simd.dll file that comes with Mono 2.8.

It should be approximately in: C: \ Program Files (x86) \ Mono-2.8 \ lib \ mono \ 2.0 \ Mono.Simd.dll.

+1
source

All Articles