rtapi.py 226 Bytes
Newer Older
dugupeiwen's avatar
dugupeiwen committed
1
2
3
4
5
6
7
8
9
10
"""
Declarations of the Runtime API functions.
"""

from ctypes import c_int, POINTER

API_PROTOTYPES = {
    # cudaError_t cudaRuntimeGetVersion ( int* runtimeVersion )
    'cudaRuntimeGetVersion': (c_int, POINTER(c_int)),
}