Skip to content

Commit 8894e8f

Browse files
committed
Add Meta copyright and license
1 parent 1cfdd86 commit 8894e8f

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

examples/offline_inference/spec_decode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def main():
8181
tensor_parallel_size=args.tp,
8282
enable_chunked_prefill=args.enable_chunked_prefill,
8383
enforce_eager=args.enforce_eager,
84-
gpu_memory_utilization=0.7,
84+
gpu_memory_utilization=0.8,
8585
speculative_config=speculative_config,
8686
disable_log_stats=False,
8787
max_model_len=16384,

tests/v1/e2e/test_spec_decode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def test_ngram_correctness(
108108
"yuhuili/EAGLE-LLaMA3.1-Instruct-8B", 1),
109109
("eagle3", "meta-llama/Llama-3.1-8B-Instruct",
110110
"yuhuili/EAGLE3-LLaMA3.1-Instruct-8B", 1),
111-
("eagle", "/home/zhiweiz/local/models/scout_base_HF_20250605_201140",
111+
("eagle", "meta-llama/Llama-4-Scout-17B-16E-Instruct",
112112
"morgendave/EAGLE-Llama-4-Scout-17B-16E-Instruct", 4),
113113
],
114114
ids=["llama3_eagle", "llama3_eagle3", "llama4_eagle"])

vllm/model_executor/models/llama4_eagle.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# SPDX-License-Identifier: Apache-2.0
22
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3+
# Copyright 2025 the LLAMA4, Meta Inc., vLLM, and HuggingFace Inc. team.
4+
# All rights reserved.
5+
#
6+
#
7+
# Licensed under the Apache License, Version 2.0 (the "License");
8+
# you may not use this file except in compliance with the License.
9+
# You may obtain a copy of the License at
10+
#
11+
# http://www.apache.org/licenses/LICENSE-2.0
12+
#
13+
# Unless required by applicable law or agreed to in writing, software
14+
# distributed under the License is distributed on an "AS IS" BASIS,
15+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
# See the License for the specific language governing permissions and
17+
# limitations under the License.
318

419
from collections.abc import Iterable
520
from typing import Optional

0 commit comments

Comments
 (0)