https://github.com/naetherm/derelictcublas
Dynamic bindings to the CuBLAS library for the D Programming Language.
https://github.com/naetherm/derelictcublas
cublas cuda d derelict dlang
Last synced: 6 days ago
JSON representation
Dynamic bindings to the CuBLAS library for the D Programming Language.
- Host: GitHub
- URL: https://github.com/naetherm/derelictcublas
- Owner: naetherm
- Created: 2019-02-22T13:10:00.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-22T18:05:12.000Z (over 7 years ago)
- Last Synced: 2025-10-31T07:40:50.512Z (8 months ago)
- Topics: cublas, cuda, d, derelict, dlang
- Language: D
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
DerelictCuBLAS
==============
A dynamic binding to CuBLAS of CUDA for the D Programming Language.
Please see the pages [Building and Linking Derelict][2] and [Using Derelict][3], in the Derelict documentation, for information on how to build DerelictCUDA and load the CUDA library at run time. In the meantime, here's some sample code.
```D
import derelict.cublas;
void main() {
DerelictCuBLAS.load();
...
}
```
[1] http://www.nvidia.com/object/cuda_home_new.html
[2]: http://derelictorg.github.io/compiling.html
[3]: http://derelictorg.github.io/using.html