commit - release 1

This commit is contained in:
2026-03-18 11:47:48 -07:00
commit 6f43807900
109 changed files with 14909 additions and 0 deletions
+127
View File
@@ -0,0 +1,127 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "venv: create",
"type": "shell",
"command": "python -m venv .venv",
"problemMatcher": []
},
{
"label": "deps: install",
"type": "shell",
"command": "${command:python.interpreterPath}",
"args": [
"-m",
"pip",
"install",
"-U",
"pip",
"&&",
"${command:python.interpreterPath}",
"-m",
"pip",
"install",
"-e",
".[dev]"
],
"problemMatcher": [],
"dependsOn": "venv: create"
},
{
"label": "Run KernBench CLI",
"type": "shell",
"command": "${command:python.interpreterPath}",
"args": [
"-m",
"kernbench.cli.main",
"run",
"--topology",
"topology.yaml",
"--bench",
"qkv_gemm"
],
"options": { "cwd": "${workspaceFolder}" },
"problemMatcher": [],
"presentation": {
"reveal": "silent",
"panel": "shared",
"clear": true
}
},
{
"label": "Run KernBench Probe",
"type": "shell",
"command": "${command:python.interpreterPath}",
"args": [
"-m",
"kernbench.cli.main",
"probe",
"--topology",
"topology.yaml"
],
"options": { "cwd": "${workspaceFolder}" },
"problemMatcher": [],
"presentation": {
"reveal": "silent",
"panel": "shared",
"clear": true
}
},
{
"label": "Pytest: Run All (terminal)",
"type": "shell",
"command": "${command:python.interpreterPath}",
"args": [
"-m",
"pytest",
"-q",
"-s"
],
"problemMatcher": [],
"group": "test"
},
{
"label": "lint",
"type": "shell",
"command": "${command:python.interpreterPath}",
"args": [
"-m",
"ruff",
"check",
"."
],
"problemMatcher": []
},
{
"label": "format",
"type": "shell",
"command": "${command:python.interpreterPath}",
"args": [
"-m",
"ruff",
"format",
"."
],
"problemMatcher": []
},
{
"label": "which python",
"type": "shell",
"command": "${command:python.interpreterPath}",
"args": [
"-c",
"import sys;print(sys.executable)"
],
"problemMatcher": []
}
]
}