Skip to content
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

Prepare for open-source release #5

Merged
merged 9 commits into from
May 8, 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
101 changes: 0 additions & 101 deletions .github/workflows/publish.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/workflows/pylint.yml

This file was deleted.

15 changes: 0 additions & 15 deletions .github/workflows/scripts/build.sh

This file was deleted.

20 changes: 0 additions & 20 deletions .github/workflows/scripts/create_release.js

This file was deleted.

18 changes: 0 additions & 18 deletions .github/workflows/scripts/cuda-install.sh

This file was deleted.

56 changes: 0 additions & 56 deletions .github/workflows/scripts/env.sh

This file was deleted.

14 changes: 0 additions & 14 deletions .github/workflows/scripts/pytorch-install.sh

This file was deleted.

5 changes: 2 additions & 3 deletions .github/workflows/yapf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install yapf==0.32.0
pip install toml==0.10.2
python -m pip install -r requirements-dev.txt
- name: Running yapf
run: |
yapf --diff --recursive vllm --exclude 'vllm/model_executor/parallel_utils/**'
yapf --diff --recursive sarathi --exclude 'sarathi/model_executor/parallel_utils/**'
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,9 @@ celerybeat.pid
.env
.venv
env/
env_sarathi/
env_flashinfer/
env_flashinfer_2/
venv/
ENV/
env.bak/
Expand Down Expand Up @@ -181,5 +184,16 @@ _build/
# Custom
datasets/**/*.json
datasets/**/*.svg
old
outputs
wandb
benchmark_output
benchmark_output_old
benchmark_output_old_1
offline_inference_output
capacity_search_output*
isoqps_output*
profiling_output
env_vidur
high_tail_latency_output
profiling_outputs
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[submodule "third_party/flash-attention"]
path = third_party/flash-attention
url = https://github.com/skrider/flash-attention.git
commit = 7968148214850ede9fa4bd515316c643ebd8ae83
17 changes: 6 additions & 11 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[MASTER]

# Files or directories to be skipped. They should be base names, not paths.
ignore=docs,parallel_utils
ignore=parallel_utils

# Files or directories matching the regex patterns are skipped. The regex
# matches against base names, not paths.
Expand Down Expand Up @@ -85,15 +85,15 @@ disable=abstract-method,
intern-builtin,
invalid-str-codec,
locally-disabled,
logging-fstring-interpolation, # added by vLLM
logging-not-lazy, # added by vLLM
logging-fstring-interpolation, # added by Sarathi
logging-not-lazy, # added by Sarathi
long-builtin,
long-suffix,
map-builtin-not-iterating,
misplaced-comparison-constant,
missing-class-docstring, # TODO (vLLM): enable
missing-class-docstring, # TODO (Sarathi): enable
missing-function-docstring,
missing-module-docstring, # TODO (vLLM): enable
missing-module-docstring, # TODO (Sarathi): enable
metaclass-assignment,
next-method-called,
next-method-defined,
Expand Down Expand Up @@ -151,11 +151,6 @@ disable=abstract-method,
wrong-import-order,
xrange-builtin,
zip-builtin-not-iterating,
protected-access,
unsubscriptable-object,
invalid-all-object,
redefined-builtin,
consider-using-in


[REPORTS]
Expand Down Expand Up @@ -269,7 +264,7 @@ generated-members=
[FORMAT]

# Maximum number of characters on a single line.
max-line-length=180
max-line-length=80

# TODO(https://github.com/PyCQA/pylint/issues/3352): Direct pylint to exempt
# lines made too long by directives to pytype.
Expand Down
21 changes: 0 additions & 21 deletions .readthedocs.yaml

This file was deleted.

Loading
Loading