-
-
Notifications
You must be signed in to change notification settings - Fork 12k
Add @tjtanaa to codeowner for ROCm and multi-modal #28360
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,7 +9,7 @@ | |
| /vllm/model_executor/layers/quantization @mgoin @robertgshaw2-redhat @tlrmchlsmth @yewentao256 @pavanimajety | ||
| /vllm/model_executor/layers/mamba @tdoublep | ||
| /vllm/model_executor/model_loader @22quinn | ||
| /vllm/multimodal @DarkLight1337 @ywang96 @NickLucche | ||
| /vllm/multimodal @DarkLight1337 @ywang96 @NickLucche @tjtanaa | ||
| /vllm/vllm_flash_attn @LucasWilkinson | ||
| /vllm/lora @jeejeelee | ||
| /vllm/reasoning @aarnphm @chaunceyjiang | ||
|
|
@@ -105,11 +105,15 @@ mkdocs.yaml @hmellor | |
| /vllm/attention/ops/triton_unified_attention.py @tdoublep | ||
|
|
||
| # ROCm related: specify owner with write access to notify AMD folks for careful code review | ||
| /docker/Dockerfile.rocm* @gshtras | ||
| /vllm/v1/attention/backends/rocm*.py @gshtras | ||
| /vllm/v1/attention/backends/mla/rocm*.py @gshtras | ||
| /vllm/attention/ops/rocm*.py @gshtras | ||
| /vllm/model_executor/layers/fused_moe/rocm*.py @gshtras | ||
| /docker/Dockerfile.rocm* @gshtras @tjtanaa | ||
| /vllm/v1/attention/backends/rocm*.py @gshtras @tjtanaa | ||
| /vllm/v1/attention/backends/mla/rocm*.py @gshtras @tjtanaa | ||
| /vllm/attention/ops/rocm*.py @gshtras @tjtanaa | ||
| /vllm/model_executor/layers/fused_moe/rocm*.py @gshtras @tjtanaa | ||
| /csrc/rocm @gshtras @tjtanaa | ||
| *rocm* @tjtanaa | ||
| *quark* @tjtanaa | ||
|
||
| *aiter* @tjtanaa | ||
|
||
|
|
||
| # TPU | ||
| /vllm/v1/worker/tpu* @NickLucche | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To better align with the PR's goal of covering all ROCm-related files and to simplify the
CODEOWNERSfile, consider using a single glob pattern for allrocmfiles under the/vllmdirectory. This would also ensure future ROCm-related files are automatically covered, which seems to be part of your intent as stated in the PR description. The current changes only add ownership to existing specific paths.