FSCL.Compiler 1.3.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package FSCL.Compiler --version 1.3.2
                    
NuGet\Install-Package FSCL.Compiler -Version 1.3.2
                    
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="FSCL.Compiler" Version="1.3.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FSCL.Compiler" Version="1.3.2" />
                    
Directory.Packages.props
<PackageReference Include="FSCL.Compiler" />
                    
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 FSCL.Compiler --version 1.3.2
                    
#r "nuget: FSCL.Compiler, 1.3.2"
                    
#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 FSCL.Compiler@1.3.2
                    
#: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=FSCL.Compiler&version=1.3.2
                    
Install as a Cake Addin
#tool nuget:?package=FSCL.Compiler&version=1.3.2
                    
Install as a Cake Tool

FSCL Compiler is a source-to-source compiler to program OpenCL from within F# using functional composition of functions, methods, lambdas and collection functions. The compiler is able to produce the OpenCL C99 source code out of quoted expressions, where expressions can contain a reference or a call to an FSCL kernel, a lambda, a collection function (e.g. Array.reduce) or a regular function.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on FSCL.Compiler:

Package Downloads
FSCL.Runtime

The FSCL Runtime framework is takes care of executing OpenCL kernels generated from the FSCL Compiler in a way that is completely transparent to programmers. On platforms with multiple OpenCL-enabled devices the runtime is also able to perform automatic selection of the best device where to execute each OpenCL computation the programmer asks to run.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.0.1 2,650 6/17/2015
2.0.0 1,543 6/17/2015
1.5.5 2,529 10/30/2014
1.5.4 2,014 10/29/2014
1.5.1 1,538 10/28/2014
1.4.9 1,607 10/28/2014
1.4.8 1,578 10/27/2014
1.4.7 1,542 10/26/2014
1.4.6 1,476 10/24/2014
1.4.4 1,538 10/22/2014
1.4.2 1,475 10/21/2014
1.4.1 1,566 10/21/2014
1.4.0 1,535 10/20/2014
1.3.8 1,554 9/11/2014
1.3.7 1,602 9/7/2014
1.3.6 1,548 9/6/2014
1.3.5 1,526 8/29/2014
1.3.4 1,531 8/28/2014
1.3.3 1,545 8/23/2014
1.3.2 1,558 8/23/2014
1.3.1 1,626 8/20/2014
1.3.0 3,039 7/25/2014
1.2.0 2,225 7/11/2014

Fixed bug and extended support for structs and records. Now you can use both custom F# records and structs (and arrays of records and structs) as parameters of kernels and functions. Also, you can declare private/local structs and records using record initialisation construct, struct parameterless constructor and "special" struct constructor (a constructor taking N arguments, each of one matching one of the N fields, in the order).
- Valid record decl: let myRec = { field1 = val1; ... fieldN = valN }
- Valid default struct decl: let myStruct = new MyStruct()
- Valid "special constructor" struct decl: let myStruct = new MyStruct(valForField1, valForField2, ... valForFieldN)
- NOT valid struct decl: let myStruct = new MyStruct(<Args where the i-TH is not a value assigned to the i-TH field>)