An open API service indexing awesome lists of open source software.

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.

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