Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
ollama
Commits
3bc8b983
Unverified
Commit
3bc8b983
authored
Jan 11, 2024
by
Fabian Preiß
Committed by
GitHub
Jan 11, 2024
Browse files
fix gpu_test.go Error (same type) uint64->uint32 (#1921)
parent
ab6be852
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
gpu/gpu_test.go
gpu/gpu_test.go
+1
-1
No files found.
gpu/gpu_test.go
View file @
3bc8b983
...
@@ -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
,
uint
64
(
0
))
assert
.
Greater
(
t
,
info
.
DeviceCount
,
uint
32
(
0
))
default
:
default
:
return
return
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment