This repository was archived by the owner on Oct 11, 2024. It is now read-only.
Commit 007ada5 1 parent 9b8c474 commit 007ada5 Copy full SHA for 007ada5
File tree 6 files changed +6
-6
lines changed
vllm/model_executor/layers
6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 25
25
COMMIT=${{ github.sha }}
26
26
VENV="${{ inputs.venv }}-${COMMIT:0:7}"
27
27
source $(pyenv root)/versions/${{ inputs.python }}/envs/${VENV}/bin/activate
28
- pip3 install --index-url http://${{ inputs.pypi }}:8080/ --trusted-host ${{ inputs.pypi }} magic-wand
28
+ pip3 install --index-url http://${{ inputs.pypi }}:8080/ --trusted-host ${{ inputs.pypi }} nm- magic-wand
29
29
pip3 install -r requirements.txt
30
30
SUCCESS=0
31
31
pip3 install -e . || SUCCESS=$?
Original file line number Diff line number Diff line change 28
28
COMMIT=${{ github.sha }}
29
29
VENV="${{ inputs.venv }}-${COMMIT:0:7}"
30
30
source $(pyenv root)/versions/${{ inputs.python }}/envs/${VENV}/bin/activate
31
- pip3 install --index-url http://${{ inputs.pypi }}:8080/ --trusted-host ${{ inputs.pypi }} magic-wand
31
+ pip3 install --index-url http://${{ inputs.pypi }}:8080/ --trusted-host ${{ inputs.pypi }} nm- magic-wand
32
32
pip3 install -r requirements-dev.txt
33
33
# run tests via runner script
34
34
SUCCESS=0
Original file line number Diff line number Diff line change @@ -55,6 +55,6 @@ if [ -z "${VENV}" ]; then
55
55
fi
56
56
57
57
source $( pyenv root) /versions/${PYTHON} /envs/${VENV} /bin/activate
58
- pip3 install --index-url http://${PYPI_IP} :8080/ --trusted-host ${PYPI_IP} magic-wand
58
+ pip3 install --index-url http://${PYPI_IP} :8080/ --trusted-host ${PYPI_IP} nm- magic-wand
59
59
pip3 install -r requirements.txt
60
60
pip3 install -e .
Original file line number Diff line number Diff line change @@ -436,7 +436,7 @@ def get_requirements() -> List[str]:
436
436
return requirements
437
437
438
438
439
- _sparsity_deps = ["magic_wand " ]
439
+ _sparsity_deps = ["nm-magic-wand " ]
440
440
441
441
442
442
def get_extra_requirements () -> dict :
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ def __new__(cls,
29
29
if not is_magic_wand_available :
30
30
raise ValueError (
31
31
"magic_wand is not available and required for sparsity "
32
- "support. Please install it with `pip install magic_wand `" )
32
+ "support. Please install it with `pip install nm-magic-wand `" )
33
33
34
34
self = torch .Tensor ._make_wrapper_subclass (
35
35
cls ,
Original file line number Diff line number Diff line change 5
5
if not is_magic_wand_available :
6
6
raise ValueError (
7
7
"magic_wand is not available and required for sparsity "
8
- "support. Please install it with `pip install magic_wand `" )
8
+ "support. Please install it with `pip install nm-magic-wand `" )
9
9
10
10
from vllm .model_executor .layers .sparsity .base_config import SparsityConfig # noqa: E402
11
11
from vllm .model_executor .layers .sparsity .sparse_w16a16 import SparseW16A16Config # noqa: E402
You can’t perform that action at this time.
0 commit comments