Ejemplo n.º 1
0
// Initialize the CUDA driver API.
// Currently, flags must be 0.
// If Init() has not been called, any function from the driver API will panic with ERROR_NOT_INITIALIZED.
func Init(flags int) {
	err := Result(C.cuInit(C.uint(flags)))
	if err != SUCCESS {
		panic(err)
	}
}
Ejemplo n.º 2
0
func Init(flags uint32) int {
	return int(C.cuInit(C.uint(flags)))
}