Brahma.FSharp.OpenCL.AST
3.0.0-alpha1.5
dotnet add package Brahma.FSharp.OpenCL.AST --version 3.0.0-alpha1.5
NuGet\Install-Package Brahma.FSharp.OpenCL.AST -Version 3.0.0-alpha1.5
<PackageReference Include="Brahma.FSharp.OpenCL.AST" Version="3.0.0-alpha1.5" />
paket add Brahma.FSharp.OpenCL.AST --version 3.0.0-alpha1.5
#r "nuget: Brahma.FSharp.OpenCL.AST, 3.0.0-alpha1.5"
// Install Brahma.FSharp.OpenCL.AST as a Cake Addin #addin nuget:?package=Brahma.FSharp.OpenCL.AST&version=3.0.0-alpha1.5&prerelease // Install Brahma.FSharp.OpenCL.AST as a Cake Tool #tool nuget:?package=Brahma.FSharp.OpenCL.AST&version=3.0.0-alpha1.5&prerelease
Brahma.FSharp
Brahma.FSharp provides a way to utilize GPGPU in your F# programs. It is based on F# quotations to OpenCL translation.
Features
- Utilization of OpenCL for communication with GPU. So, you can work not only with NVIDIA devices but with any device which supports OpenCL (e.g. with AMD or Intel devices).
- Not only primitive types, but also discriminated unions, structs, records are supported.
- Pattern matching, mutable and immutable bindings, nested bindings are supported.
- Custom atomics.
- Fine-grained memory management and kernels compilation process.
- Mailbox processor based interface for communication with devices.
More details are available here.
Installation
Install Brahma.FSharp by running:
dotnet add package Brahma.FSharp
Setup BRAHMA_OCL_PATH environment variable to opencl.dll location if it differs from default.
Quick Start
open Brahma.FSharp
let device = ClDevice.GetFirstAppropriateDevice()
let context = RuntimeContext(device)
let kernel =
<@
fun (range: Range1D) (buffer: int clarray) ->
let gid = range.GlobalID0
buffer.[gid] <- buffer.[gid] + 1
@>
opencl {
use! buffer = ClArray.alloc<int> 1024
do! runCommand kernel <| fun kernel ->
kernel
<| Range1D(1024, 256)
<| buffer
return! ClArray.toHost buffer
}
|> ClTask.runSync context
Contributing
Contributions, issues and feature requests are welcome. Feel free to check issues page if you want to contribute.
Build
Make sure the following requirements are installed on your system:
- dotnet SDK 7.0 or higher
- OpenCL-compatible device and respective OpenCL driver
To build and run all tests:
- on Windows
build.cmd
- on Linux/macOS
./build.sh
To find more options look at MiniScaffold. We use it in our project.
Relese
The release process is automated: NuGet packages publishing process is triggered by tag pushing to any branch. To release new vesion one should
- Add relese notes to CHANGELOG
- Run
./build.sh Release [version]
(on local machine)
License
This project licensed under EPL-1.0 License. License text can be found in the license file.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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 was computed. 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. |
-
net7.0
- FSharp.Core (= 7.0.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Brahma.FSharp.OpenCL.AST:
Package | Downloads |
---|---|
Brahma.FSharp.OpenCL.Translator
F# quotations to OpenCL C translator. |
|
Brahma.FSharp.OpenCL.Printer
OpenCL C printer: from AST to text. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.0.0-alpha1.5 | 177 | 4/17/2024 |
3.0.0-alpha1.3 | 66 | 4/12/2024 |
3.0.0-alpha1.2 | 59 | 4/12/2024 |
3.0.0-alpha1.1 | 62 | 4/9/2024 |
2.0.5 | 2,311 | 2/10/2023 |
2.0.4 | 604 | 1/13/2023 |
2.0.3 | 762 | 1/4/2023 |
2.0.2 | 534 | 12/28/2022 |
2.0.1 | 3,975 | 8/5/2022 |
2.0.0 | 1,341 | 7/5/2022 |
2.0.0-alpha9.6 | 194 | 6/3/2022 |
2.0.0-alpha9.5 | 150 | 5/7/2022 |
2.0.0-alpha9.4 | 146 | 4/8/2022 |
2.0.0-alpha9.3 | 143 | 3/24/2022 |
2.0.0-alpha9.2 | 1,331 | 11/26/2021 |
2.0.0-alpha9.1 | 320 | 10/16/2021 |
2.0.0-alpha9 | 596 | 10/15/2021 |
2.0.0-alpha8 | 589 | 9/27/2021 |
2.0.0-alpha7.1 | 189 | 7/18/2021 |
2.0.0-alpha7 | 797 | 5/19/2021 |
2.0.0-alpha6.2 | 229 | 5/19/2021 |
2.0.0-alpha6.1 | 270 | 3/22/2021 |
2.0.0-alpha6 | 780 | 3/22/2021 |
2.0.0-alpha5 | 883 | 1/27/2021 |
2.0.0-alpha4 | 852 | 12/27/2020 |
2.0.0-alpha3 | 879 | 11/27/2020 |
2.0.0-alpha2 | 921 | 11/11/2020 |
## [3.0.0-alpha1.5] - 2024-04-17
[3.0.0-alpha1.5]: https://github.com/YaccConstructor/Brahma.FSharp/compare/v2.0.5...v3.0.0-alpha1.5
### Added
- Raw queue
- Automatic synchronization removed
- Raw queue
- Automatic synchronization removed
- MailboxProcessor replaced with custom agent on System.Threading.Channels.
### Fixed
- Raw float passing. (Issue #157)
- Channel synchronization.