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

feat(examples): add image_scale (#7)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
fumiama
2026-03-29 17:11:22 +08:00
committed by GitHub
parent 68ca8b5e2e
commit 6522bde914
123 changed files with 1074 additions and 163 deletions

View File

@@ -0,0 +1,21 @@
# Quick Start — Device Enumeration
The simplest gozel example: initialize the Level Zero runtime, enumerate all available GPU drivers and their devices, and print device names.
## What It Does
- Initializes Level Zero and retrieves all GPU driver handles
- Iterates over devices under each driver, queries and prints device properties (name)
## Run
```bash
go run main.go
```
## Sample Output
```
Found 1 GPU driver(s)
Device: Intel(R) Graphics
```