-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (72 loc) · 2.07 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (72 loc) · 2.07 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "KernelAgent"
version = "0.1.0"
description = "Autonomous Triton Kernel Generation Agent"
readme = "README.md"
requires-python = ">=3.10,<3.13"
license = {file = "LICENSE"}
authors = [
{name = "PyTorch Labs"},
]
keywords = ["triton", "gpu", "kernel", "generation", "llm", "ai"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Code Generators",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"openai",
"anthropic",
"jinja2",
"python-dotenv",
"gradio>=5.5.0",
"requests",
"numpy",
"omegaconf",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov",
]
[project.scripts]
fuser-ui = "scripts.fuser_ui:main"
kernel-agent = "scripts.triton_ui:main"
list-models = "scripts.list_models:main"
optimization-ui = "scripts.optimization_ui:main"
pipeline-ui = "scripts.pipeline_ui:main"
[project.urls]
"Homepage" = "https://github.com/pytorch-labs/KernelAgent"
"Bug Tracker" = "https://github.com/pytorch-labs/KernelAgent/issues"
"Repository" = "https://github.com/pytorch-labs/KernelAgent"
[tool.setuptools.packages.find]
include = ["triton_kernel_agent*", "kernel_perf_agent*", "Fuser*", "scripts", "utils"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"triton_kernel_agent" = ["templates/*.j2"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
addopts = "-v --cov=triton_kernel_agent --cov-report=term-missing"
[tool.ruff]
extend-exclude = [
"LICENSE",
"external",
".fuse",
"compose_out",
"kernels_out",
"triton_kernel_logs",
"coverage_*",
"compose_out_auto",
"KernelBench",
]