Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion kernels/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

export check_dirs := src examples tests

all: src/kernels/python_depends.json

src/kernels/python_depends.json: ../build2cmake/src/python_dependencies.json
cp $< $@

style:
black ${check_dirs}
isort ${check_dirs}
ruff check ${check_dirs} --fix
ruff check ${check_dirs} --fix
22 changes: 6 additions & 16 deletions kernels/src/kernels/python_depends.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,25 @@
{
"general": {
"einops": {
"nix": [
"einops"
],
"python": [
"einops"
]
"nix": ["einops"],
"python": ["einops"]
}
},
"backends": {
"cpu": {},
"cuda": {
"nvidia-cutlass-dsl": {
"nix": [
"nvidia-cutlass-dsl"
],
"python": [
"nvidia-cutlass-dsl"
]
"nix": ["nvidia-cutlass-dsl"],
"python": ["nvidia-cutlass-dsl"]
}
},
"metal": {},
"rocm": {},
"xpu": {
"onednn": {
"nix": [],
"python": [
"onednn-devel"
]
"python": ["onednn-devel"]
}
}
}
}
}
67 changes: 0 additions & 67 deletions kernels/update_python_depends.py

This file was deleted.

Loading