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

refactor: tidy cmd hierachy

This commit is contained in:
源文雨
2026-03-20 23:36:13 +08:00
parent 639da52ab3
commit e91efbc86f
4 changed files with 3 additions and 3 deletions

16
cmd/examples/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))
}