-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Expand file tree
/
Copy pathCODEOWNERS
More file actions
35 lines (26 loc) · 1.18 KB
/
CODEOWNERS
File metadata and controls
35 lines (26 loc) · 1.18 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
# Codeowners for modular/modular repo.
# Every line is a file pattern that is followed by one or more code owners.
# Order is important; the last matching pattern takes the most precedence.
* @modular/max-code-reviewers
# CI
/.github/ @modular/sdlc
/bazel/ @modular/sdlc
# Standard Library
/mojo/stdlib/ @modular/stdlib
/mojo/stdlib/stdlib/gpu/host @modular/stdlib
/mojo/stdlib/stdlib/gpu/host/device_context.mojo @modular/driver @modular/stdlib
/mojo/stdlib/stdlib/gpu/runtime @modular/stdlib @modular/mojo-lang
/mojo/stdlib/test/asyncrt @modular/stdlib @modular/runtime
# Kernel Library
/max/kernels @modular/kernels
# Tracing
/mojo/stdlib/gpu/host/_tracing.mojo @modular/stdlib @modular/kernels @modular/mojo-tooling
/mojo/stdlib/gpu/profiler.mojo @modular/stdlib @modular/kernels @modular/mojo-tooling
/mojo/stdlib/runtime/tracing.mojo @modular/mojo-lang @modular/mojo-tooling
/mojo/stdlib/test/runtime/tracing.mojo @modular/mojo-lang @modular/mojo-tooling
# Documentation
/mojo/docs/ @modular/mojo-docs
/mojo/docs/nightly-changelog.md @modular/stdlib
/mojo/stdlib/docs/ @modular/mojo-docs @modular/stdlib
# Examples
/examples/mojo/ @jackos @arthurevans @KenJones-Modular