Unverified Commit 3bc8b983 authored by Fabian Preiß's avatar Fabian Preiß Committed by GitHub
Browse files

fix gpu_test.go Error (same type) uint64->uint32 (#1921)

parent ab6be852
...@@ -18,7 +18,7 @@ func TestBasicGetGPUInfo(t *testing.T) { ...@@ -18,7 +18,7 @@ func TestBasicGetGPUInfo(t *testing.T) {
case "linux", "windows": case "linux", "windows":
assert.Greater(t, info.TotalMemory, uint64(0)) assert.Greater(t, info.TotalMemory, uint64(0))
assert.Greater(t, info.FreeMemory, uint64(0)) assert.Greater(t, info.FreeMemory, uint64(0))
assert.Greater(t, info.DeviceCount, uint64(0)) assert.Greater(t, info.DeviceCount, uint32(0))
default: default:
return return
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment