-
Notifications
You must be signed in to change notification settings - Fork 2k
[Refactor] Provide a framework to accommodate operators for different hardware devices #5735
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
weijinqian0
merged 12 commits into
vllm-project:main
from
weijinqian0:main_for_device_adaptor
Jan 13, 2026
Merged
Changes from 7 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
394a1c2
[Refactor] refactor mask in attention_v1 and mla_v1.
1039ee8
[Refactor] refactor mask in attention_v1 and mla_v1.
ff6d2e9
[Refactor] refactor mask in attention_v1 and mla_v1.
66ed782
[Refactor] refactor mask in attention_v1 and mla_v1.
06f56ad
[Refactor] refactor mask in attention_v1 and mla_v1.
8ff0923
[Refactor] refactor mask in attention_v1 and mla_v1.
f0e49e5
[Refactor] refactor mask in attention_v1 and mla_v1.
3b5299a
[Refactor] rename class name.
1180120
[Refactor] rename class name.
fcef387
[Refactor] rename class name.
9672dfe
Merge branch 'main' into main_for_device_adaptor
weijinqian0 6bed04f
[Refactor] rename class name.
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| # SPDX-FileCopyrightText: Copyright contributors to the vLLM project | ||
| # Copyright (c) 2025 Huawei Technologies Co., Ltd. All Rights Reserved. | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
| # This file is a part of the vllm-ascend project. | ||
| # | ||
| from typing import Optional, Type | ||
|
|
||
| import torch_npu | ||
|
|
||
| from vllm_ascend.utils import AscendDeviceType, get_ascend_device_type | ||
|
|
||
|
|
||
| class CommonDeviceOperator(object): | ||
|
|
||
| @classmethod | ||
| def reshape_and_cache(cls, key, value, key_cache, value_cache, | ||
| slot_mapping): | ||
| torch_npu._npu_reshape_and_cache(key=key, | ||
| value=value, | ||
| key_cache=key_cache, | ||
| value_cache=value_cache, | ||
| slot_indices=slot_mapping) | ||
|
|
||
|
|
||
| class A5DeviceOperator(CommonDeviceOperator): | ||
|
|
||
| @classmethod | ||
| def reshape_and_cache(cls, key, value, key_cache, value_cache, | ||
| slot_mapping): | ||
| torch_npu.npu_scatter_pa_kv_cache(key=key, | ||
| value=value, | ||
|
weijinqian0 marked this conversation as resolved.
Outdated
|
||
| key_cache=key_cache, | ||
| value_cache=value_cache, | ||
| slot_mapping=slot_mapping) | ||
|
|
||
|
|
||
| def get_device_operator(): | ||
| ascend_device_type = get_ascend_device_type() | ||
| if ascend_device_type == AscendDeviceType.A5: | ||
| return A5DeviceOperator | ||
| return CommonDeviceOperator | ||
|
|
||
|
|
||
| DeviceOperator: Optional[Type['CommonDeviceOperator']] = get_device_operator() | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.