-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCODEOWNERS
More file actions
74 lines (58 loc) · 1.96 KB
/
Copy pathCODEOWNERS
File metadata and controls
74 lines (58 loc) · 1.96 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
# CODEOWNERS for Born ML Framework
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
#
# This file defines individuals or teams responsible for code in this repository.
# Code owners are automatically requested for review when someone opens a pull request
# that modifies code they own.
#
# Last updated: 2025-11-17
# Default owner for everything in the repo
* @kolkov
# Core Tensor API - Foundation of the framework
/internal/tensor/ @kolkov
/internal/tensor/dtype.go @kolkov
/internal/tensor/shape.go @kolkov
/internal/tensor/backend.go @kolkov
# Backend implementations - Performance critical code
/internal/backend/ @kolkov
/internal/backend/cpu/ @kolkov
/internal/backend/cpu/matmul.go @kolkov
/internal/backend/cpu/conv2d.go @kolkov
# Autodiff system - Gradient computation engine
/internal/autodiff/ @kolkov
/internal/autodiff/ops/ @kolkov
/internal/autodiff/tape.go @kolkov
/internal/autodiff/backward.go @kolkov
# Neural Network modules - Public API for ML models
/internal/nn/ @kolkov
/internal/nn/linear.go @kolkov
/internal/nn/conv2d.go @kolkov
/internal/nn/maxpool2d.go @kolkov
/internal/nn/activation.go @kolkov
/internal/nn/loss.go @kolkov
# Optimizers - Training algorithms
/internal/optim/ @kolkov
# Command-line tools
/cmd/ @kolkov
# Examples - Reference implementations and tutorials
/examples/ @kolkov
# Scripts - Build automation and tooling
/scripts/ @kolkov
# Documentation - Keep synchronized with code
*.md @kolkov
/docs/ @kolkov
# GitHub configuration and CI/CD
/.github/ @kolkov
# Code quality and linting configuration
/.golangci.yml @kolkov
/Makefile @kolkov
# Tests - Ensure coverage and correctness
*_test.go @kolkov
# Benchmarks - Performance validation
*_benchmark_test.go @kolkov
# Release management - Version control and changelog
/CHANGELOG.md @kolkov
/LICENSE @kolkov
# Go module files - Dependency management (zero dependencies policy!)
/go.mod @kolkov
/go.sum @kolkov