A set of libraries of simple CUDA methods.
monkeybot is split into the following libraries, which can be found in the mb/ folder:
- mbText: text manipulation
- mbMath: simple math functions
- mbMatrix: matrix manipulation
A list of functions included in each library can be found in the included "functions.txt".
To use monkeybot, you can either include "monkeybot.cuh", which will include all monkeybot libraries, or whichever individual library you want to use with "mb/mb.cuh".
All monkeybot functions are kept in the namespace "mb".
When compiling your program, make sure you include the path to monkeybot (i.e. use "nvcc -I ...").
For sample usage, see the included "helloworld.cu" in the examples/ folder.