예제 #1
0
파일: init.go 프로젝트: LStoleriu/hotspin
// 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)
	}
}
예제 #2
0
파일: cuda.go 프로젝트: kashif/gocuda
func Init(flags uint32) int {
	return int(C.cuInit(C.uint(flags)))
}