Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions container/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -693,8 +693,8 @@ if [ ! -z ${RELEASE_BUILD} ]; then
BUILD_ARGS+=" --build-arg RELEASE_BUILD=${RELEASE_BUILD} "
fi

if [[ $FRAMEWORK == "VLLM" ]]; then
echo "Forcing enable_kvbm to true in vLLM image build"
if [[ $FRAMEWORK == "VLLM" ]] || [[ $FRAMEWORK == "TRTLLM" ]]; then
echo "Forcing enable_kvbm to true in ${FRAMEWORK} image build"
ENABLE_KVBM=true
fi

Expand Down
2 changes: 1 addition & 1 deletion tests/kvbm/test_determinism.py
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,6 @@ class TestDeterminism:
],
indirect=True,
)
@pytest.mark.vllm
def test_determinism_with_cache_reset(self, tester, llm_server, runtime_services):
"""Test determinism across cache reset: run test with warmup, reset cache, run again without warmup."""
print("\n" + "=" * 70)
Expand Down Expand Up @@ -916,6 +915,7 @@ def test_determinism_with_cache_reset(self, tester, llm_server, runtime_services
"num_prompts",
[int(x) for x in os.environ.get("KVBM_IFEVAL_PROMPTS", "120").split(",")],
)
@pytest.mark.skip(reason="Flaky test: DIS-665")
def test_concurrent_determinism_with_ifeval(
self,
tester,
Expand Down
Loading