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
f6cb0a55
Commit
f6cb0a55
authored
Jan 08, 2024
by
Jeffrey Morgan
Browse files
update cuda overhead to 15% or 400MiB
parent
2680078c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
gpu/gpu.go
gpu/gpu.go
+1
-1
No files found.
gpu/gpu.go
View file @
f6cb0a55
...
@@ -133,7 +133,7 @@ func CheckVRAM() (int64, error) {
...
@@ -133,7 +133,7 @@ func CheckVRAM() (int64, error) {
if
gpuInfo
.
FreeMemory
>
0
&&
(
gpuInfo
.
Library
==
"cuda"
||
gpuInfo
.
Library
==
"rocm"
)
{
if
gpuInfo
.
FreeMemory
>
0
&&
(
gpuInfo
.
Library
==
"cuda"
||
gpuInfo
.
Library
==
"rocm"
)
{
// leave 15% or 400MiB of VRAM free for overhead
// leave 15% or 400MiB of VRAM free for overhead
overhead
:=
gpuInfo
.
FreeMemory
*
3
/
20
overhead
:=
gpuInfo
.
FreeMemory
*
3
/
20
minOverhead
:=
int64
(
400
*
1024
*
1024
)
minOverhead
:=
u
int64
(
400
*
1024
*
1024
)
if
overhead
<
minOverhead
{
if
overhead
<
minOverhead
{
overhead
=
minOverhead
overhead
=
minOverhead
}
}
...
...
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