1
0
mirror of https://github.com/fumiama/gozel.git synced 2026-06-10 19:30:25 +08:00

feat(gen): impl. all specs except union

This commit is contained in:
源文雨
2026-03-24 00:49:26 +08:00
parent d42d758aeb
commit 1111b0ecc1
159 changed files with 9994 additions and 423 deletions

View File

@@ -3,14 +3,13 @@ package main
import (
"fmt"
"github.com/fumiama/gozel"
"github.com/fumiama/gozel/ze"
)
func main() {
err := gozel.InitZe()
hs, err := ze.InitGPUDrivers()
if err != nil {
panic(err)
}
desc := gozel.GPGPUDriverTypeDesc()
fmt.Println(gozel.InitDrivers(&desc))
fmt.Println(hs)
}