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

Update GitHub Actions targets #622

Merged
merged 4 commits into from
Dec 11, 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/workflows/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ name: Lint GitHub Actions workflows
on:
push:
branches:
- "main"
- "habana_main"
paths:
- '.github/workflows/*.ya?ml'
- '.github/workflows/actionlint.*'
- '.github/workflows/matchers/actionlint.json'
pull_request:
branches:
- "main"
- "habana_main"
paths:
- '.github/workflows/*.ya?ml'
- '.github/workflows/actionlint.*'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
# but only for the main branch
push:
branches:
- main
- habana_main
paths:
- "**/*.py"
- "**/*.md"
Expand All @@ -15,7 +15,7 @@ on:
- .github/workflows/codespell.yml
pull_request:
branches:
- main
- habana_main
paths:
- "**/*.py"
- "**/*.md"
Expand Down
81 changes: 0 additions & 81 deletions .github/workflows/lint-and-deploy.yaml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/png-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: Lint PNG exports from excalidraw
on:
push:
branches:
- "main"
- "habana_main"
paths:
- '*.excalidraw.png'
- '.github/workflows/png-lint.yml'
pull_request:
branches:
- "main"
- "habana_main"
paths:
- '*.excalidraw.png'
- '.github/workflows/png-lint.yml'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: Lint shell scripts
on:
push:
branches:
- "main"
- "habana_main"
paths:
- '**/*.sh'
- '.github/workflows/shellcheck.yml'
pull_request:
branches:
- "main"
- "habana_main"
paths:
- '**/*.sh'
- '.github/workflows/shellcheck.yml'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sphinx-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ name: Lint documentation
on:
push:
branches:
- main
- habana_main
paths:
- "docs/**"
pull_request:
branches:
- main
- habana_main
paths:
- "docs/**"

Expand Down
2 changes: 1 addition & 1 deletion README_GAUDI.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ INFO 08-02 17:38:43 hpu_executor.py:91] init_cache_engine took 37.92 GiB of devi
- `VLLM_HPU_LOG_STEP_GRAPH_COMPILATION_ALL`: if `true`, will log graph compilations per each vLLM engine step, always, even if there were none. Disabled by default.
- `VLLM_HPU_LOG_STEP_CPU_FALLBACKS`: if `true`, will log cpu fallbacks per each vLLM engine step, only when there was any. Disabled by default.
- `VLLM_HPU_LOG_STEP_CPU_FALLBACKS_ALL`: if `true`, will log cpu fallbacks per each vLLM engine step, always, even if there were none. Disabled by default.
- `VLLM_REGIONAL_COMPILATION`: if `false`, turn off regional complation (when using torch.compile execution mode).
- `VLLM_REGIONAL_COMPILATION`: if `false`, turn off regional compilation (when using torch.compile execution mode).

**Performance tuning knobs:**

Expand Down
Loading