-
Notifications
You must be signed in to change notification settings - Fork 7.8k
Expand file tree
/
Copy pathCODEOWNERS
More file actions
129 lines (92 loc) · 3.9 KB
/
Copy pathCODEOWNERS
File metadata and controls
129 lines (92 loc) · 3.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# See https://help.github.com/articles/about-codeowners/
# for more info about CODEOWNERS file
# It uses the same pattern rule for gitignore file,
# see https://git-scm.com/docs/gitignore#_pattern_format.
# ==== Documentation ====
# Authors responsible for copy-editing of the documentation.
# NOTE: Add @ray-project/ray-docs to all following docs subdirs.
/doc/ @ray-project/ray-docs
/doc/source/use-cases.rst @pcmoritz
# ==== Ray core ====
# All C++ code.
/src/ @ray-project/ray-core
# Python worker.
/python/ray/ @ray-project/ray-core
# Java worker.
/java/ @kfstorm @raulchen @WangTaoTheTonic @SongGuyang @ray-project/ray-core
# C++ worker
/cpp/ @SongGuyang @raulchen @kfstorm @ray-project/ray-core
/doc/source/cluster/ @ray-project/ray-core @ray-project/ray-docs
/doc/source/ray-core/ @ray-project/ray-core @ray-project/ray-docs
# Public protobuf files.
/src/ray/protobuf/public/ @edoakes @jjyao
# Azure autoscaler
/python/ray/autoscaler/azure/ @ray-project/ray-core @marosset @jackfrancis @alimaazamat
/python/ray/autoscaler/_private/_azure/ @ray-project/ray-core @marosset @jackfrancis @alimaazamat
# ==== Libraries and frameworks ====
# Dependencies
/python/setup.py @richardliaw @edoakes @aslonnie
# Common directory shared by core and the libraries.
# @edoakes is the czar for now because the pattern is new.
/python/ray/_common/ @edoakes @jjyao
# Ray data.
/python/ray/data/ @ray-project/ray-data
/doc/source/data/ @ray-project/ray-data
/python/ray/dashboard/modules/data/ @ray-project/ray-data
/python/ray/dashboard/modules/metrics/dashboards/data_dashboard_panels.py @ray-project/ray-data
# Ray workflows.
/python/ray/workflow/ @ray-project/ray-core
/doc/source/workflows/ @ray-project/ray-core @ray-project/ray-docs
# RLlib.
/rllib/ @ray-project/ray-rllib
/doc/source/rllib/ @ray-project/ray-rllib @ray-project/ray-docs
# Ray Tune
/python/ray/tune/ @ray-project/ray-tune
/doc/source/tune/ @ray-project/ray-tune @ray-project/ray-docs
# Ray Train
/python/ray/train/ @ray-project/ray-train
/doc/source/train/ @ray-project/ray-train @ray-project/ray-docs
# Ray AIR
/python/ray/air/ @ray-project/ray-train
# Ray Serve
/python/ray/serve/ @ray-project/ray-serve
/java/serve/ @ray-project/ray-serve
/src/ray/protobuf/serve.proto @ray-project/ray-serve
/python/ray/dashboard/modules/serve/ @ray-project/ray-serve
/doc/source/serve/ @ray-project/ray-serve @ray-project/ray-docs
# LLM
/python/ray/llm/ @ray-project/ray-llm
/python/ray/data/llm.py @ray-project/ray-llm
/python/ray/dashboard/modules/metrics/dashboards/serve_llm_dashboard_panels.py @ray-project/ray-llm
/python/ray/dashboard/modules/metrics/dashboards/serve_llm_grafana_dashboard_base.json @ray-project/ray-llm
/python/ray/serve/llm/ @ray-project/ray-llm
/doc/source/serve/llm/ @ray-project/ray-llm @ray-project/ray-docs
# ML Docker Dependencies
/python/requirements/ml/dl-cpu-requirements.txt @richardliaw @matthewdeng
/python/requirements/ml/dl-gpu-requirements.txt @richardliaw @matthewdeng
# Ray symbol export
/src/ray/ray_version_script.lds @ray-project/ray-core
/src/ray/ray_exported_symbols.lds @ray-project/ray-core
# Ray usage stats
/python/ray/_private/usage/ @edoakes @richardliaw @jjyao
/python/ray/dashboard/modules/usage_stats/ @edoakes @richardliaw @jjyao
/src/ray/protobuf/usage.proto @pcmoritz @thomasdesr
# ==== Build and CI ====
# Bazel.
#/BUILD.bazel @ray-project/ray-core @ray-project/ray-ci
#/WORKSPACE @ray-project/ray-core @ray-project/ray-ci
#/bazel/ @ray-project/ray-core @ray-project/ray-ci
# CI scripts.
#/ci/ @ray-project/ray-core @ray-project/ray-ci
# CI
/ci/docker @ray-project/ray-ci
/ci/ray_ci @ray-project/ray-ci
# Buildkite pipeline management
.buildkite/hooks @ray-project/ray-ci
/release/ray_release @ray-project/ray-ci
# Allow people to add BYOD post-installation shell scripts
# on their own.
/release/ray_release/byod/*.sh
/.github/ISSUE_TEMPLATE/ @ray-project/ray-ci
/.github/workflows/ @ray-project/ray-ci
/.gemini/ @edoakes @ray-project/ray-ci