Skip to content

Commit

Permalink
[Bugfix] Fix offline_inference_with_prefix.py (vllm-project#9505)
Browse files Browse the repository at this point in the history
Signed-off-by: Tyler Michael Smith <tyler@neuralmagic.com>
  • Loading branch information
tlrmchlsmth committed Nov 23, 2024
1 parent 2feb36b commit 438b36d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions examples/offline_inference_with_prefix.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,13 @@
sampling_params = SamplingParams(temperature=0.0)

# Create an LLM.
regular_llm = LLM(model="facebook/opt-125m", gpu_memory_utilization=0.4)
regular_llm = LLM(model="facebook/opt-125m", gpu_memory_utilization=0.3)

# The second LLM needs to request a higher gpu_memory_utilization because
# the first LLM has already allocated a full 30% of the gpu memory.
prefix_cached_llm = LLM(model="facebook/opt-125m",
enable_prefix_caching=True,
gpu_memory_utilization=0.4)
gpu_memory_utilization=0.6)
print("Results without `enable_prefix_caching`")

# Generate texts from the prompts. The output is a list of RequestOutput objects
Expand Down

0 comments on commit 438b36d

Please # to comment.