Safe Haskell | None |
---|---|
Language | Haskell2010 |
Code generation for CUDA.
Documentation
compileProg :: MonadFreshNames m => Prog KernelsMem -> m (Warnings, CParts) Source #
Compile the program to C with calls to CUDA.
The result of compilation to C is four parts, which can be put together in various ways. The obvious way is to concatenate all of them, which yields a CLI program. Another is to compile the library part by itself, and use the header file to call into it.
asExecutable :: CParts -> String Source #
As executable with command-line interface.