9 lines
233 B
Python
9 lines
233 B
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
|
from .base import BaseLayerWithLoRA
|
|
|
|
|
|
#TODO: Implement this
|
|
class QKVCrossParallelLinearWithLoRA(BaseLayerWithLoRA):
|
|
pass
|