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
vllm_cscc
Commits
21063c11
Unverified
Commit
21063c11
authored
Nov 06, 2024
by
Aaron Pham
Committed by
GitHub
Nov 06, 2024
Browse files
[CI/Build] drop support for Python 3.8 EOL (#8464)
Signed-off-by:
Aaron Pham
<
contact@aarnphm.xyz
>
parent
4be3a451
Changes
115
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
0 additions
and
21 deletions
+0
-21
vllm/model_executor/models/gemma2.py
vllm/model_executor/models/gemma2.py
+0
-1
vllm/model_executor/models/glm4_vision_encoder.py
vllm/model_executor/models/glm4_vision_encoder.py
+0
-1
vllm/model_executor/models/gpt2.py
vllm/model_executor/models/gpt2.py
+0
-1
vllm/model_executor/models/gpt_bigcode.py
vllm/model_executor/models/gpt_bigcode.py
+0
-1
vllm/model_executor/models/gpt_j.py
vllm/model_executor/models/gpt_j.py
+0
-1
vllm/model_executor/models/gpt_neox.py
vllm/model_executor/models/gpt_neox.py
+0
-1
vllm/model_executor/models/granite.py
vllm/model_executor/models/granite.py
+0
-1
vllm/model_executor/models/granitemoe.py
vllm/model_executor/models/granitemoe.py
+0
-1
vllm/model_executor/models/idefics2_vision_model.py
vllm/model_executor/models/idefics2_vision_model.py
+0
-2
vllm/model_executor/models/internlm2.py
vllm/model_executor/models/internlm2.py
+0
-1
vllm/model_executor/models/internlm2_ve.py
vllm/model_executor/models/internlm2_ve.py
+0
-1
vllm/model_executor/models/jais.py
vllm/model_executor/models/jais.py
+0
-1
vllm/model_executor/models/jamba.py
vllm/model_executor/models/jamba.py
+0
-1
vllm/model_executor/models/llama.py
vllm/model_executor/models/llama.py
+0
-1
vllm/model_executor/models/mamba.py
vllm/model_executor/models/mamba.py
+0
-1
vllm/model_executor/models/minicpm.py
vllm/model_executor/models/minicpm.py
+0
-1
vllm/model_executor/models/minicpm3.py
vllm/model_executor/models/minicpm3.py
+0
-1
vllm/model_executor/models/minicpmv.py
vllm/model_executor/models/minicpmv.py
+0
-1
vllm/model_executor/models/mixtral.py
vllm/model_executor/models/mixtral.py
+0
-1
vllm/model_executor/models/mixtral_quant.py
vllm/model_executor/models/mixtral_quant.py
+0
-1
No files found.
vllm/model_executor/models/gemma2.py
View file @
21063c11
# coding=utf-8
# Copyright 2024 The vLLM team.
# Copyright 2024 The vLLM team.
# Copyright 2024 Google Inc. HuggingFace Inc. team. All rights reserved.
# Copyright 2024 Google Inc. HuggingFace Inc. team. All rights reserved.
#
#
...
...
vllm/model_executor/models/glm4_vision_encoder.py
View file @
21063c11
# coding=utf-8
# Adapted from
# Adapted from
# https://github.com/THUDM/GLM-4
# https://github.com/THUDM/GLM-4
"""Inference-only GLM-4v model visual encoder compatible with THUDM weights."""
"""Inference-only GLM-4v model visual encoder compatible with THUDM weights."""
...
...
vllm/model_executor/models/gpt2.py
View file @
21063c11
# coding=utf-8
# Adapted from
# Adapted from
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/gpt2/modeling_gpt2.py
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/gpt2/modeling_gpt2.py
# Copyright 2023 The vLLM team.
# Copyright 2023 The vLLM team.
...
...
vllm/model_executor/models/gpt_bigcode.py
View file @
21063c11
# coding=utf-8
# Adapted from
# Adapted from
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/gpt2/modeling_gpt2.py
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/gpt2/modeling_gpt2.py
# Copyright 2023 The vLLM team.
# Copyright 2023 The vLLM team.
...
...
vllm/model_executor/models/gpt_j.py
View file @
21063c11
# coding=utf-8
# Adapted from
# Adapted from
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/gptj/modeling_gptj.py
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/gptj/modeling_gptj.py
# Copyright 2023 The vLLM team.
# Copyright 2023 The vLLM team.
...
...
vllm/model_executor/models/gpt_neox.py
View file @
21063c11
# coding=utf-8
# Adapted from
# Adapted from
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/gpt_neox/modeling_gpt_neox.py
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/gpt_neox/modeling_gpt_neox.py
# Copyright 2023 The vLLM team.
# Copyright 2023 The vLLM team.
...
...
vllm/model_executor/models/granite.py
View file @
21063c11
# coding=utf-8
# Adapted from
# Adapted from
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/llama/modeling_llama.py
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/llama/modeling_llama.py
# Copyright 2023 The vLLM team.
# Copyright 2023 The vLLM team.
...
...
vllm/model_executor/models/granitemoe.py
View file @
21063c11
# coding=utf-8
# Adapted from
# Adapted from
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/llama/modeling_llama.py
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/llama/modeling_llama.py
# Copyright 2023 The vLLM team.
# Copyright 2023 The vLLM team.
...
...
vllm/model_executor/models/idefics2_vision_model.py
View file @
21063c11
# coding=utf-8
# adapted from https://github.com/huggingface/transformers/blob/v4.43.2/src/transformers/models/idefics2/modeling_idefics2.py
# adapted from https://github.com/huggingface/transformers/blob/v4.43.2/src/transformers/models/idefics2/modeling_idefics2.py
# Copyright 2024 The vLLM team.
# Copyright 2024 The vLLM team.
# Copyright 2024 the HuggingFace Inc. team. All rights reserved.
# Copyright 2024 the HuggingFace Inc. team. All rights reserved.
...
...
vllm/model_executor/models/internlm2.py
View file @
21063c11
# -*- coding: utf-8 -*-
from
functools
import
partial
from
functools
import
partial
from
typing
import
Any
,
Dict
,
Iterable
,
List
,
Optional
,
Tuple
,
Union
from
typing
import
Any
,
Dict
,
Iterable
,
List
,
Optional
,
Tuple
,
Union
...
...
vllm/model_executor/models/internlm2_ve.py
View file @
21063c11
# -*- coding: utf-8 -*-
from
typing
import
List
,
Optional
,
Tuple
,
Union
from
typing
import
List
,
Optional
,
Tuple
,
Union
import
torch
import
torch
...
...
vllm/model_executor/models/jais.py
View file @
21063c11
# coding=utf-8
# Adapted from
# Adapted from
# https://huggingface.co/inceptionai/jais-30b-chat-v3/blob/main/modeling_jais.py
# https://huggingface.co/inceptionai/jais-30b-chat-v3/blob/main/modeling_jais.py
# Copyright 2023 The vLLM team.
# Copyright 2023 The vLLM team.
...
...
vllm/model_executor/models/jamba.py
View file @
21063c11
# coding=utf-8
"""Inference-only Jamba model."""
"""Inference-only Jamba model."""
from
typing
import
Iterable
,
List
,
Optional
,
Tuple
from
typing
import
Iterable
,
List
,
Optional
,
Tuple
...
...
vllm/model_executor/models/llama.py
View file @
21063c11
# coding=utf-8
# Adapted from
# Adapted from
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/llama/modeling_llama.py
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/llama/modeling_llama.py
# Copyright 2023 The vLLM team.
# Copyright 2023 The vLLM team.
...
...
vllm/model_executor/models/mamba.py
View file @
21063c11
# coding=utf-8
"""PyTorch MAMBA model."""
"""PyTorch MAMBA model."""
from
typing
import
Iterable
,
List
,
Optional
,
Tuple
from
typing
import
Iterable
,
List
,
Optional
,
Tuple
...
...
vllm/model_executor/models/minicpm.py
View file @
21063c11
# coding=utf-8
# Adapted from
# Adapted from
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/llama/modeling_llama.py
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/llama/modeling_llama.py
# Copyright 2023 The vLLM team.
# Copyright 2023 The vLLM team.
...
...
vllm/model_executor/models/minicpm3.py
View file @
21063c11
# coding=utf-8
# Adapted from
# Adapted from
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/llama/modeling_llama.py
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/llama/modeling_llama.py
# Copyright 2024 The ModelBest team.
# Copyright 2024 The ModelBest team.
...
...
vllm/model_executor/models/minicpmv.py
View file @
21063c11
# coding=utf-8
# Adapted from
# Adapted from
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/llama/modeling_llama.py
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/llama/modeling_llama.py
# Copyright 2023 The vLLM team.
# Copyright 2023 The vLLM team.
...
...
vllm/model_executor/models/mixtral.py
View file @
21063c11
# coding=utf-8
# Adapted from
# Adapted from
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/llama/modeling_llama.py
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/llama/modeling_llama.py
# Copyright 2023 The vLLM team.
# Copyright 2023 The vLLM team.
...
...
vllm/model_executor/models/mixtral_quant.py
View file @
21063c11
# coding=utf-8
# Adapted from
# Adapted from
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/llama/modeling_llama.py
# https://github.com/huggingface/transformers/blob/v4.28.0/src/transformers/models/llama/modeling_llama.py
# Copyright 2023 The vLLM team.
# Copyright 2023 The vLLM team.
...
...
Prev
1
2
3
4
5
6
Next
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