FSCL.Compiler


Interfacing with the FSCL compiler

Once you have coded your FSCL kernels, the next step is to compile them to OpenCL. Valid OpenCL C99 source code is not the only output produced by the FSCL Compiler. Instead, the compiler produces a lot of useful information about the kernel structure, the data-types used and the way parameters are accessed from withing the kernel body. In this page we provide an overview on how to compile FSCL kernels and on the information produced by the compilation itself.

Default compilation

Most of the time, to compile a kernel you simply create an instance of the FSCL Compiler and you pass the quoted kernel call or kernel reference to its Compile method. From the compilation point of view, there is no much difference between passing the kernel and passing a call to the kernel. The compilation process is exactly the same as like as the OpenCL source produced. The only difference is that in case of a call the result contains the expressions of the actual arguments. Those expressions are currently required only if you Run the kernel, which is a task performed by the FSCL Runtime. Nonetheless, future developments may introduce compiler steps whose behavior is driven by the actual arguments of a kernel call (for example, merging two kernels into one when the argument of a kernel call is the result of another kernel call). In such a case, the compiler itself would produce different results depending on whether you pass a kernel reference of a kernel call.

 1: 
 2: 
 3: 
 4: 
 5: 
 6: 
 7: 
 8: 
 9: 
10: 
11: 
12: 
13: 
14: 
15: 
16: 
17: 
18: 
19: 
open FSCL
open FSCL.Compiler
open FSCL.Language

[<ReflectedDefinition>]
let VectorAdd(a: float32[], b:float32[], c:float32[], wi: WorkItemInfo) =
    let myId = wi.GlobalID(0)
    c.[myId] <- a.[myId] + b.[myId]

// Instantiate the compiler
let compiler = new Compiler()
// Kernel reference
let compilationResultFromRef = compiler.Compile(<@ VectorAdd @>)
// Kernel call
let a = Array.create 1024 2.0f
let b = Array.create 1024 3.0f
let c = Array.zeroCreate<float32> 1024
let size = worksize([| a.Length |], [| 128 |], [| 0 |])
let compilationResultFromCall = compiler.Compile(<@ VectorAdd(a, b, c, size) @>)

The compiler data-structure: IKernelModule

The Compile signature declares that the method is returning an instance of Object. The runtime type of the returned value depends on the configuration of the compiler pipeline (see Compiler Customisation Tutorial). The default pipeline is composed of built-in (on native ) steps and generates an instance of IKernelModule. Among the other information, this instance contains the OpenCL source code produced.

 1: 
 2: 
 3: 
 4: 
 5: 
 6: 
 7: 
 8: 
 9: 
10: 
11: 
12: 
13: 
14: 
15: 
let compilationResult = compiler.Compile(<@ VectorAdd(a, b, c, size) @>) :?> IKernelModule
// Call arguments (if the quotation contains a kernel call)
let callArgs = compilationResult.CallArgs
// OpenCL source code
let code = compilationResult.Code
// References to global properties translated into #define(s)
let defines = compilationResult.ConstantDefines
// OpenCL-specific compiler directives (such as the one to enable double-precision)
let directives = compilationResult.Directives
// Structs or records used by the kernel or by one or more utility functions
let globalTypes = compilationResult.GlobalTypes
// Utility functions
let utilityFunctions = compilationResult.Functions
// Kernel
let kernel = compilationResult.Kernel

The kernel data structure: IKernelInfo

One of the most interesting data in the kernel module is provided by the Kernel property (of type `IKernelInfo). Among the other information, the other information, this property holds the result of access analysis relative to each kernel parameter. Access analysis is performed on the kernel body for each vector (array) parameter to detect the way the parameter is accessed (ReadOnly, WriteOnly, ReadWrite, NoAccess). This analysis is particularly useful for the FSCL Runtime to optimise buffer allocation prior to kernel execution.

1: 
2: 
let firstKernelPar = compilationResult.Kernel.Parameters.[0]
let accessAnalysis = firstKernelPar.AccessAnalysis

Compiler options

The Compile method is overloaded to enable the programmer to specify some compilation options using an insteance
of Dictionary<string, obj>. The FSCL compiler library is currently declaring two built-in options, heavily used by the FSCL Runtime to speed-up kernel compilation: "ParsOnly" and "NoCodegen". The first stops the native pipeline after the parsing step, the second right before the latest two steps (function and module codegen).

Compiler options are thought to be completely extensible. Programmer can define additional options to drive the behavior of custom compiler steps.

1: 
2: 
3: 
4: 
5: 
6: 
7: 
open System.Collections.Generic

let myCustomOptions = new Dictionary<string, obj>()
myCustomOptions.Add(CompilerOptions.ParseOnly, ())
// The IKernelModule data structure is only partially filled
// It contains only data produced by the parsing step
let compilationResultOnlyParsing = compiler.Compile(<@ VectorAdd(a, b, c, size) @>) :?> IKernelModule
Multiple items
type ReflectedDefinitionAttribute =
  inherit Attribute
  new : unit -> ReflectedDefinitionAttribute

Full name: Microsoft.FSharp.Core.ReflectedDefinitionAttribute

--------------------
new : unit -> ReflectedDefinitionAttribute
val VectorAdd : a:float32 [] * b:float32 [] * c:float32 [] * wi:'a -> unit

Full name: CompilerInterfaceTutorial.VectorAdd
val a : float32 []
Multiple items
val float32 : value:'T -> float32 (requires member op_Explicit)

Full name: Microsoft.FSharp.Core.Operators.float32

--------------------
type float32 = System.Single

Full name: Microsoft.FSharp.Core.float32

--------------------
type float32<'Measure> = float32

Full name: Microsoft.FSharp.Core.float32<_>
val b : float32 []
val c : float32 []
val wi : 'a
val myId : int
val compiler : obj

Full name: CompilerInterfaceTutorial.compiler
val compilationResultFromRef : obj

Full name: CompilerInterfaceTutorial.compilationResultFromRef
val a : float32 []

Full name: CompilerInterfaceTutorial.a
module Array

from Microsoft.FSharp.Collections
val create : count:int -> value:'T -> 'T []

Full name: Microsoft.FSharp.Collections.Array.create
val b : float32 []

Full name: CompilerInterfaceTutorial.b
val c : float32 []

Full name: CompilerInterfaceTutorial.c
val zeroCreate : count:int -> 'T []

Full name: Microsoft.FSharp.Collections.Array.zeroCreate
val size : obj

Full name: CompilerInterfaceTutorial.size
property System.Array.Length: int
val compilationResultFromCall : obj

Full name: CompilerInterfaceTutorial.compilationResultFromCall
val compilationResult : obj

Full name: CompilerInterfaceTutorial.compilationResult
val callArgs : obj

Full name: CompilerInterfaceTutorial.callArgs
val code : obj

Full name: CompilerInterfaceTutorial.code
val defines : obj

Full name: CompilerInterfaceTutorial.defines
val directives : obj

Full name: CompilerInterfaceTutorial.directives
val globalTypes : obj

Full name: CompilerInterfaceTutorial.globalTypes
val utilityFunctions : obj

Full name: CompilerInterfaceTutorial.utilityFunctions
val kernel : obj

Full name: CompilerInterfaceTutorial.kernel
val firstKernelPar : obj

Full name: CompilerInterfaceTutorial.firstKernelPar
val accessAnalysis : obj

Full name: CompilerInterfaceTutorial.accessAnalysis
namespace System
namespace System.Collections
namespace System.Collections.Generic
val myCustomOptions : Dictionary<string,obj>

Full name: CompilerInterfaceTutorial.myCustomOptions
Multiple items
type Dictionary<'TKey,'TValue> =
  new : unit -> Dictionary<'TKey, 'TValue> + 5 overloads
  member Add : key:'TKey * value:'TValue -> unit
  member Clear : unit -> unit
  member Comparer : IEqualityComparer<'TKey>
  member ContainsKey : key:'TKey -> bool
  member ContainsValue : value:'TValue -> bool
  member Count : int
  member GetEnumerator : unit -> Enumerator<'TKey, 'TValue>
  member GetObjectData : info:SerializationInfo * context:StreamingContext -> unit
  member Item : 'TKey -> 'TValue with get, set
  ...
  nested type Enumerator
  nested type KeyCollection
  nested type ValueCollection

Full name: System.Collections.Generic.Dictionary<_,_>

--------------------
Dictionary() : unit
Dictionary(capacity: int) : unit
Dictionary(comparer: IEqualityComparer<'TKey>) : unit
Dictionary(dictionary: IDictionary<'TKey,'TValue>) : unit
Dictionary(capacity: int, comparer: IEqualityComparer<'TKey>) : unit
Dictionary(dictionary: IDictionary<'TKey,'TValue>, comparer: IEqualityComparer<'TKey>) : unit
Multiple items
val string : value:'T -> string

Full name: Microsoft.FSharp.Core.Operators.string

--------------------
type string = System.String

Full name: Microsoft.FSharp.Core.string
type obj = System.Object

Full name: Microsoft.FSharp.Core.obj
Dictionary.Add(key: string, value: obj) : unit
val compilationResultOnlyParsing : obj

Full name: CompilerInterfaceTutorial.compilationResultOnlyParsing
Fork me on GitHub