"docs/git@developer.sourcefind.cn:hehl2/torchaudio.git" did not exist on "5c8541b77dd399b276c919c2a8969e5b973191f0"
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) {
case "linux", "windows":
assert.Greater(t, info.TotalMemory, uint64(0))
assert.Greater(t, info.FreeMemory, uint64(0))
assert.Greater(t, info.DeviceCount, uint64(0))
assert.Greater(t, info.DeviceCount, uint32(0))
default:
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