Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

neuralmagic-vllm -> nm-vllm #69

Merged
merged 3 commits into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/nm-build-vllm-whl/action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: build neuralmagic-vllm whl
description: 'build whl file of neuralmagic-vllm'
name: build nm-vllm whl
description: 'build whl file of nm-vllm'
inputs:
python:
description: 'python version, e.g. 3.10.12'
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/nm-build-vllm/action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: build neuralmagic-vllm
description: 'build neuralmagic-vllm'
name: build nm-vllm
description: 'build nm-vllm'
inputs:
Gi_per_thread:
description: 'requested GiB to reserve per thread'
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/nm-test-vllm/action.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: test neuralmagic-vllm
description: "test neuralmagic-vllm via, 'pytest tests/'"
name: test nm-vllm
description: "test nm-vllm via, 'pytest tests/'"
inputs:
test_directory:
description: 'test directory, path is relative to neuralmagic-vllm'
description: 'test directory, path is relative to nm-vllm'
required: true
test_results:
description: 'top-level directory for xml test results'
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/build
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

usage() {
echo``
echo "build 'neuralmagic-vllm' in specified python and venv"
echo "build 'nm-vllm' in specified python and venv"
echo
echo "usage: ${0} <options>"
echo
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/run-tests
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ usage() {
echo " -r - desired results base directory. xml results will mirror provided tests directory structure. (default 'test-results/')"
echo " -h - this list of options"
echo
echo "note: all paths are relative to 'neuralmagic-vllm' root"
echo "note: all paths are relative to 'nm-vllm' root"
echo
exit 1
}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ pip install nm-vllm

You can also build and install `nm-vllm` from source (this will take ~10 minutes):
```bash
git clone https://github.com/neuralmagic/neuralmagic-vllm.git
cd neuralmagic-vllm
git clone https://github.com/neuralmagic/nm-vllm.git
cd nm-vllm
pip install -e .
```

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,9 +449,9 @@ def get_requirements() -> List[str]:
"serving engine for LLMs"),
long_description=read_readme(),
long_description_content_type="text/markdown",
url="https://github.com/vllm-project/vllm",
url="https://github.com/neuralmagic",
project_urls={
"Homepage": "https://github.com/vllm-project/vllm",
"Homepage": "https://github.com/neuralmagic",
"Documentation": "https://vllm.readthedocs.io/en/latest/",
},
classifiers=[
Expand Down
Loading