-
Notifications
You must be signed in to change notification settings - Fork 30
[Misc] Add CODEOWNERS to the project. #988
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
base: main
Are you sure you want to change the base?
Changes from all commits
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 |
|---|---|---|
| @@ -0,0 +1,59 @@ | ||
| # CODEOWNERS file for tpu-inference | ||
| # This file defines code ownership for different parts of the repository. | ||
| # Each line is a file pattern followed by one or more owners. | ||
| # Owners are notified when PRs modify code in their areas. | ||
| # | ||
| # Order matters - the last matching pattern takes precedence. | ||
| # Analysis includes full history from tpu_commons and tpu_inference paths. | ||
|
|
||
| # Default owners for everything in the repo (fallback) | ||
| * @vipannalla | ||
|
|
||
| # CI/CD and Build Configuration | ||
| /.buildkite/ @jcyang43 | ||
| /.github/ @jcyang43 | ||
|
|
||
| # Documentation | ||
| /docs/ @bvrockwell | ||
| /README.md @bvrockwell | ||
| /CONTRIBUTING.md @jrplatin @bvrockwell | ||
|
|
||
| # Distributed Computing | ||
| /tpu_inference/distributed/ @mrjunwan-lang @xiangxu-google | ||
|
|
||
| # Kernel Implementations (Performance-critical) | ||
| /tpu_inference/kernels/ @kyuyeunk @yaochengji @bythew3i | ||
|
|
||
| # JAX Model Layers - Attention | ||
| /tpu_inference/layers/jax/ @py4 @bzgoogle @jrplatin @gpolovets1 | ||
| /tpu_inference/layers/vllm/ @hfan @vanbasten23 @lsy323 | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similar to comment below, can you add me instead of Siyuan for various vLLM related things? |
||
|
|
||
| # JAX Model Implementations | ||
| /tpu_inference/models/jax/qwen2_5_vl.py @hfan @KWang1998 | ||
| /tpu_inference/models/jax/gpt_oss.py @bzgoogle | ||
| /tpu_inference/models/jax/deepseek_v3.py @bzgoogle | ||
| /tpu_inference/models/vllm/ @hfan @vanbasten23 @lsy323 | ||
|
|
||
| # Runner and Execution | ||
| /tpu_inference/runner/ @py4 @xiangxu-google | ||
| /tpu_inference/runner/tpu_jax_runner.py @py4 @xiangxu-google @sixiang-google | ||
| /tpu_inference/runner/persistent_batch_manager.py @py4 @xiangxu-google | ||
| /tpu_inference/runner/speculative_decoding_manager.py @py4 @Lumosis | ||
| /tpu_inference/executors/ @xiangxu-google @mrjunwan-lang | ||
| /tpu_inference/core/ @sixiang-google | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also add @mrjunwan-lang as secondary owner |
||
|
|
||
| # Worker Management | ||
| /tpu_inference/worker/ @py4 @xiangxu-google @lsy323 @vanbasten23 | ||
|
|
||
| # Speculative Decoding | ||
| /tpu_inference/spec_decode/ @py4 @Lumosis | ||
|
|
||
| # Platform Support | ||
| /tpu_inference/platforms/ @xiangxu-google @lsy323 | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since Siyuan is leaving and Xiang is OOO for few months, can you probably add @wenxindongwork instead who is updating this for DP support. |
||
|
|
||
| # LoRA and Adapters | ||
| /tpu_inference/lora/ @vanbasten23 | ||
| /tpu_inference/runner/lora_utils.py @vanbasten23 | ||
|
|
||
| # Docker Configuration | ||
| /docker/ @jrplatin | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,60 @@ | ||
| # CODEOWNERS file for tpu-inference | ||
| # This file defines code ownership for different parts of the repository. | ||
| # Each line is a file pattern followed by one or more owners. | ||
| # Owners are notified when PRs modify code in their areas. | ||
| # | ||
| # Order matters - the last matching pattern takes precedence. | ||
| # Analysis includes full history from tpu_commons and tpu_inference paths. | ||
|
|
||
| # Default owners for everything in the repo (fallback) | ||
| * @vipannalla | ||
|
|
||
| # CI/CD and Build Configuration | ||
| /.buildkite/ @jcyang43 | ||
| /.github/ @jcyang43 | ||
|
|
||
| # Documentation | ||
| /docs/ @bvrockwell | ||
| /README.md @bvrockwell | ||
| /CONTRIBUTING.md @jrplatin @bvrockwell | ||
|
|
||
| # Distributed Computing | ||
| /tpu_inference/distributed/ @mrjunwan-lang @xiangxu-google | ||
|
|
||
| # Kernel Implementations (Performance-critical) | ||
| /tpu_inference/kernels/ @kyuyeunk @yaochengji @bythew3i | ||
|
|
||
| # JAX Model Layers - Attention | ||
| /tpu_inference/layers/jax/ @py4 @bzgoogle @jrplatin @gpolovets1 | ||
| /tpu_inference/layers/vllm/ @hfan @vanbasten23 @lsy323 | ||
|
|
||
| # JAX Model Implementations | ||
| /tpu_inference/models/jax/ @py4 @bzgoogle @jrplatin @gpolovets1 | ||
| /tpu_inference/models/jax/qwen2_5_vl.py @hfan @KWang1998 | ||
| /tpu_inference/models/jax/gpt_oss.py @bzgoogle | ||
| /tpu_inference/models/jax/deepseek_v3.py @bzgoogle | ||
| /tpu_inference/models/vllm/ @hfan @vanbasten23 @lsy323 | ||
|
|
||
| # Runner and Execution | ||
| /tpu_inference/runner/ @py4 @xiangxu-google | ||
| /tpu_inference/runner/tpu_jax_runner.py @py4 @xiangxu-google @sixiang-google | ||
| /tpu_inference/runner/persistent_batch_manager.py @py4 @xiangxu-google | ||
| /tpu_inference/runner/speculative_decoding_manager.py @py4 @Lumosis | ||
| /tpu_inference/executors/ @xiangxu-google @mrjunwan-lang | ||
| /tpu_inference/core/ @sixiang-google | ||
|
|
||
| # Worker Management | ||
| /tpu_inference/worker/ @py4 @xiangxu-google @lsy323 @vanbasten23 | ||
|
|
||
| # Speculative Decoding | ||
| /tpu_inference/spec_decode/ @py4 @Lumosis | ||
|
|
||
| # Platform Support | ||
| /tpu_inference/platforms/ @xiangxu-google @lsy323 | ||
|
|
||
| # LoRA and Adapters | ||
| /tpu_inference/lora/ @vanbasten23 | ||
| /tpu_inference/runner/lora_utils.py @vanbasten23 | ||
|
|
||
| # Docker Configuration | ||
| /docker/ @jrplatin |
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.
Can you also add @QiliangCui for CI/CD?