1
0
mirror of https://github.com/fumiama/gozel.git synced 2026-06-11 03:40:24 +08:00

init: project framework

This commit is contained in:
源文雨
2026-03-11 00:17:13 +08:00
parent a91a6683f3
commit f39461341c
5 changed files with 157 additions and 0 deletions

16
cmd/gemm/main.go Normal file
View File

@@ -0,0 +1,16 @@
package main
import (
"fmt"
"github.com/fumiama/gozel"
)
func main() {
err := gozel.InitZe()
if err != nil {
panic(err)
}
desc := gozel.GPGPUDriverTypeDesc()
fmt.Println(gozel.InitDrivers(&desc))
}