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:
16
cmd/examples/gemm/main.go
Normal file
16
cmd/examples/gemm/main.go
Normal 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))
|
||||
}
|
||||
Reference in New Issue
Block a user