Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/offeex/kocl
Simple OpenCL Wrapper for Java/Kotlin with minimum overhead
https://github.com/offeex/kocl
Last synced: 1 day ago
JSON representation
Simple OpenCL Wrapper for Java/Kotlin with minimum overhead
- Host: GitHub
- URL: https://github.com/offeex/kocl
- Owner: offeex
- License: gpl-3.0
- Created: 2023-03-03T10:59:27.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-04T11:14:00.000Z (almost 2 years ago)
- Last Synced: 2024-11-18T14:37:03.460Z (2 months ago)
- Language: Kotlin
- Size: 92.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# KoCL
Very lightweight utils & tools for OpenCL written in Kotlin## What does it do
- Handles OpenCL errors, that may arise in the process
- Provides little useful utilities to work with memory
- Provides useful shorthands for buffer creation## Structure
- [Lib itself](https://github.com/offeex/KoCL/tree/main/src/main/kotlin)
- [Kotlin example code](https://github.com/offeex/KoCL/blob/main/src/test/kotlin/HelloKotlinCL.kt)## Setup
**1.** Add it in your root build.gradle at the end of repositories:
```gradle
repositories {
maven { url 'https://jitpack.io' }
}
```**2.** Add a dependency
```gradle
dependencies {
implementation 'com.github.offeex:KoCL:SNAPSHOT'
}
```