Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
95214e8b
Unverified
Commit
95214e8b
authored
Oct 30, 2025
by
Kris Hung
Committed by
GitHub
Oct 30, 2025
Browse files
chore: Improve KVBM test handling and update gitignore (#3987)
parent
6bec8b31
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
3 deletions
+7
-3
.gitignore
.gitignore
+4
-0
docs/kvbm/trtllm-setup.md
docs/kvbm/trtllm-setup.md
+1
-1
docs/kvbm/vllm-setup.md
docs/kvbm/vllm-setup.md
+1
-1
tests/kvbm/test_determinism_disagg.py
tests/kvbm/test_determinism_disagg.py
+1
-1
No files found.
.gitignore
View file @
95214e8b
...
@@ -38,6 +38,10 @@ CMakeCache.txt
...
@@ -38,6 +38,10 @@ CMakeCache.txt
*pytest_report.md
*pytest_report.md
*pytest_report.xml
*pytest_report.xml
# Test artifacts and output directories
*.shakespeare.txt
test_determinism_*/
**/__pycache__
**/__pycache__
**/venv
**/venv
**/.venv
**/.venv
...
...
docs/kvbm/trtllm-setup.md
View file @
95214e8b
...
@@ -55,7 +55,7 @@ export DYN_KVBM_CPU_CACHE_GB=4
...
@@ -55,7 +55,7 @@ export DYN_KVBM_CPU_CACHE_GB=4
export
DYN_KVBM_DISK_CACHE_GB
=
8
export
DYN_KVBM_DISK_CACHE_GB
=
8
# [Experimental] Option 3: Disk cache only (GPU -> Disk direct offloading, bypassing CPU)
# [Experimental] Option 3: Disk cache only (GPU -> Disk direct offloading, bypassing CPU)
# NOTE: this option is only experimental and it might give out the best performance.
# NOTE: this option is only experimental and it might
not
give out the best performance.
# NOTE: disk offload filtering is not support when using this option.
# NOTE: disk offload filtering is not support when using this option.
export
DYN_KVBM_DISK_CACHE_GB
=
8
export
DYN_KVBM_DISK_CACHE_GB
=
8
...
...
docs/kvbm/vllm-setup.md
View file @
95214e8b
...
@@ -69,7 +69,7 @@ cd $DYNAMO_HOME/components/backends/vllm
...
@@ -69,7 +69,7 @@ cd $DYNAMO_HOME/components/backends/vllm
> export DYN_KVBM_DISK_CACHE_GB=8
> export DYN_KVBM_DISK_CACHE_GB=8
>
>
> # [Experimental] Option 3: Disk cache only (GPU -> Disk direct offloading, bypassing CPU)
> # [Experimental] Option 3: Disk cache only (GPU -> Disk direct offloading, bypassing CPU)
> # NOTE: this option is only experimental and it might give out the best performance.
> # NOTE: this option is only experimental and it might
not
give out the best performance.
> # NOTE: disk offload filtering is not support when using this option.
> # NOTE: disk offload filtering is not support when using this option.
> export DYN_KVBM_DISK_CACHE_GB=8
> export DYN_KVBM_DISK_CACHE_GB=8
> ```
> ```
...
...
tests/kvbm/test_determinism_disagg.py
View file @
95214e8b
...
@@ -409,7 +409,7 @@ def llm_server(request, runtime_services):
...
@@ -409,7 +409,7 @@ def llm_server(request, runtime_services):
if
importlib
.
util
.
find_spec
(
"vllm"
)
is
not
None
:
if
importlib
.
util
.
find_spec
(
"vllm"
)
is
not
None
:
server_type
=
ServerType
.
vllm
server_type
=
ServerType
.
vllm
else
:
else
:
raise
Exception
(
"vllm module is not available in the current environment."
)
pytest
.
skip
(
"vllm module is not available in the current environment."
)
server_manager
=
LLMServerManager
(
server_manager
=
LLMServerManager
(
port
=
port
,
port
=
port
,
...
...
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