MaheshRavishankar | fc1cb00 | 2022-02-02 21:29:54 -0800 | [diff] [blame] | 1 | # Codeowners for IREE Github Repository. |
| 2 | # Refer to https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners |
Geoffrey Martin-Noble | 8ba45e3 | 2022-02-15 12:03:04 -0800 | [diff] [blame] | 3 | # for syntax of this file (tl;dr: syntax is like .gitignore. Last matching rule |
| 4 | # takes precedence). |
| 5 | # Because of the precedence, rules for directories are listed topologically. |
Geoffrey Martin-Noble | 318bf47 | 2022-02-16 11:27:36 -0800 | [diff] [blame] | 6 | # @ghost is used to make a pattern have no owners. It is a sentinel GitHub user |
| 7 | # that takes the place of deleted users. |
MaheshRavishankar | fc1cb00 | 2022-02-02 21:29:54 -0800 | [diff] [blame] | 8 | |
Geoffrey Martin-Noble | 8ba45e3 | 2022-02-15 12:03:04 -0800 | [diff] [blame] | 9 | # No global owners because we don't really want e.g. changing the root |
| 10 | # CMakeLists.txt file to always ping a bunch of people. |
MaheshRavishankar | fc1cb00 | 2022-02-02 21:29:54 -0800 | [diff] [blame] | 11 | |
| 12 | # Code owners for individual components/directories |
Geoffrey Martin-Noble | 8ba45e3 | 2022-02-15 12:03:04 -0800 | [diff] [blame] | 13 | |
| 14 | # Third-Party Code |
| 15 | /.gitmodules @GMNGeoffrey @ScottTodd @stellaraccident |
| 16 | /third_party/ @GMNGeoffrey @ScottTodd @stellaraccident |
Geoffrey Martin-Noble | 318bf47 | 2022-02-16 11:27:36 -0800 | [diff] [blame] | 17 | # Except for routinely-updated submodules |
Geoffrey Martin-Noble | 7f3a38b | 2022-02-18 10:25:28 -0800 | [diff] [blame] | 18 | /third_party/llvm-project @ghost |
| 19 | /third_party/tensorflow @ghost |
| 20 | /third_party/mlir-hlo @ghost |
Geoffrey Martin-Noble | 8ba45e3 | 2022-02-15 12:03:04 -0800 | [diff] [blame] | 21 | |
| 22 | # Bindings |
| 23 | /bindings/python/ @stellaraccident |
Scott Todd | c0c6184 | 2022-04-26 08:20:46 -0700 | [diff] [blame^] | 24 | /runtime/bindings/python/ @stellaraccident |
Geoffrey Martin-Noble | 8ba45e3 | 2022-02-15 12:03:04 -0800 | [diff] [blame] | 25 | /bindings/tflite/ @benvanik |
| 26 | |
| 27 | # Integrations |
| 28 | /integrations/ @benvanik @stellaraccident |
| 29 | /integrations/tensorflow/ @stellaraccident |
| 30 | /integrations/tensorflow/build_tools/ @GMNGeoffrey @stellaraccident |
| 31 | /integrations/tensorflow/test/**/iree_tfl_tests/ @rsuderman |
| 32 | |
| 33 | # Experimental |
| 34 | # It's experimental, but we still don't want any old directory added here. |
| 35 | /experimental/ @benvanik @GMNGeoffrey @stellaraccident |
| 36 | /experimental/remoting/ @stellaraccident |
| 37 | /experimental/rocm/ @ThomasRaoux |
| 38 | /experimental/web/ @ScottTodd |
| 39 | |
| 40 | # Infra Top-Level Directories |
| 41 | /benchmarks/ @GMNGeoffrey @antiagainst |
| 42 | /build_tools/ @GMNGeoffrey @ScottTodd |
| 43 | /build_tools/benchmarks/ @GMNGeoffrey @antiagainst |
| 44 | /build_tools/python_deploy/ @stellaraccident |
Scott Todd | c0c6184 | 2022-04-26 08:20:46 -0700 | [diff] [blame^] | 45 | /build_tools/scripts/ @GMNGeoffrey @ScottTodd |
Geoffrey Martin-Noble | 8ba45e3 | 2022-02-15 12:03:04 -0800 | [diff] [blame] | 46 | /build_tools/third_party/ @GMNGeoffrey @ScottTodd @stellaraccident |
| 47 | /.github/ @GMNGeoffrey @ScottTodd |
Geoffrey Martin-Noble | 8ba45e3 | 2022-02-15 12:03:04 -0800 | [diff] [blame] | 48 | |
| 49 | # llvm-external-projects |
| 50 | /llvm-external-projects/ @stellaraccident |
MaheshRavishankar | 09c660b | 2022-03-17 15:26:27 -0700 | [diff] [blame] | 51 | /llvm-external-projects/iree-dialects/ @MaheshRavishankar |
Geoffrey Martin-Noble | 8ba45e3 | 2022-02-15 12:03:04 -0800 | [diff] [blame] | 52 | /llvm-external-projects/iree-dialects/**/Dialect/LinalgExt/ @hanhanW @MaheshRavishankar |
| 53 | /llvm-external-projects/iree-dialects/test/iree_linalgext @hanhanW @MaheshRavishankar |
| 54 | |
| 55 | # Other Top-Level Directories |
| 56 | /colab/ @ScottTodd |
| 57 | /docs/ @ScottTodd |
| 58 | |
| 59 | |
| 60 | # Main IREE directories |
| 61 | /iree/ @benvanik |
| 62 | |
| 63 | # Compiler |
MaheshRavishankar | fc1cb00 | 2022-02-02 21:29:54 -0800 | [diff] [blame] | 64 | /iree/compiler/Codegen/ @MaheshRavishankar |
Geoffrey Martin-Noble | 8ba45e3 | 2022-02-15 12:03:04 -0800 | [diff] [blame] | 65 | /iree/compiler/Codegen/LLVMCPU/ @hanhanW @MaheshRavishankar |
MaheshRavishankar | fc1cb00 | 2022-02-02 21:29:54 -0800 | [diff] [blame] | 66 | /iree/compiler/Codegen/LLVMGPU/ @MaheshRavishankar @ThomasRaoux |
Geoffrey Martin-Noble | 8ba45e3 | 2022-02-15 12:03:04 -0800 | [diff] [blame] | 67 | /iree/compiler/Codegen/Sandbox/ @hanhanW @MaheshRavishankar |
| 68 | /iree/compiler/Codegen/SPIRV/ @antiagainst @MaheshRavishankar |
| 69 | /iree/compiler/ConstEval/ @stellaraccident |
MaheshRavishankar | 09c660b | 2022-03-17 15:26:27 -0700 | [diff] [blame] | 70 | /iree/compiler/Dialect/Flow/ @MaheshRavishankar |
Geoffrey Martin-Noble | 8ba45e3 | 2022-02-15 12:03:04 -0800 | [diff] [blame] | 71 | /iree/compiler/Dialect/Vulkan/ @antiagainst |
| 72 | /iree/compiler/InputConversion/ @MaheshRavishankar @stellaraccident |
| 73 | /iree/compiler/InputConversion/MHLO @hanhanW @MaheshRavishankar @rsuderman |
MaheshRavishankar | 09c660b | 2022-03-17 15:26:27 -0700 | [diff] [blame] | 74 | /iree/compiler/InputConversion/TOSA @MaheshRavishankar @rsuderman |
Geoffrey Martin-Noble | 8ba45e3 | 2022-02-15 12:03:04 -0800 | [diff] [blame] | 75 | |
| 76 | |
| 77 | # Runtime |
Scott Todd | c0c6184 | 2022-04-26 08:20:46 -0700 | [diff] [blame^] | 78 | /runtime/src/iree/ @benvanik |
| 79 | /runtime/src/iree/hal/cuda/ @ThomasRaoux |
| 80 | /runtime/src/iree/hal/cts/ @ScottTodd |
| 81 | /runtime/src/iree/hal/vulkan/ @antiagainst @ScottTodd |
Geoffrey Martin-Noble | 8ba45e3 | 2022-02-15 12:03:04 -0800 | [diff] [blame] | 82 | |
| 83 | # Other IREE directories |
Scott Todd | c0c6184 | 2022-04-26 08:20:46 -0700 | [diff] [blame^] | 84 | /samples/ @ScottTodd |
Geoffrey Martin-Noble | 318bf47 | 2022-02-16 11:27:36 -0800 | [diff] [blame] | 85 | /iree/test/ @ghost |
Geoffrey Martin-Noble | 8ba45e3 | 2022-02-15 12:03:04 -0800 | [diff] [blame] | 86 | /iree/tools/ @benvanik @GMNGeoffrey |