From 3d935d7bc77e2eee9cac4d84c4c58335e5a8ddfa Mon Sep 17 00:00:00 2001 From: Kai O'Reilly Date: Wed, 25 Dec 2024 11:58:43 -0800 Subject: [PATCH] clean up webgpuinfo print statement about GPU_DEVICE env var --- gpu/cmd/webgpuinfo/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpu/cmd/webgpuinfo/main.go b/gpu/cmd/webgpuinfo/main.go index 9c1bafbf3..a59356be0 100644 --- a/gpu/cmd/webgpuinfo/main.go +++ b/gpu/cmd/webgpuinfo/main.go @@ -21,7 +21,7 @@ func main() { gpIndex := gp.SelectGPU(gpus) props := gpus[gpIndex].GetInfo() fmt.Println("Default WebGPU Adapter number:", gpIndex, " Type:", props.AdapterType.String(), " Backend:", props.BackendType.String()) - fmt.Println("Set GPU_DEVICE environment variable to select a different device") + fmt.Println("Set the GPU_DEVICE environment variable to an adapter number to select a different GPU") for i, a := range gpus { props := a.GetInfo()