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
+55
View File
@@ -0,0 +1,55 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Run kernbench CLI",
"type": "python",
"request": "launch",
"module": "kernbench.cli.main",
"console": "integratedTerminal",
"justMyCode": true,
"args": [
"run",
"--topology", "topology.yaml",
"--bench", "qkv_gemm"
],
"env": {
"PYTHONPATH": "${workspaceFolder}/src"
}
},
{
"name": "Run KernBench Probe",
"type": "python",
"request": "launch",
"module": "kernbench.cli.main",
"console": "integratedTerminal",
"justMyCode": true,
"args": [
"probe",
"--topology", "topology.yaml",
],
"env": {
"PYTHONPATH": "${workspaceFolder}/src"
}
},
{
"name": "Pytest: Run All (terminal)",
"type": "python",
"request": "launch",
"module": "pytest",
"args": [
"-q"
],
"console": "integratedTerminal",
"justMyCode": true
}
]
}