MCPcopy Create free account
hub / github.com/RightNow-AI/autokernel / _kernel_results_path

Function _kernel_results_path

orchestrate.py:209–212  ·  view source on GitHub ↗

Derive the per-kernel results TSV path from a kernel file name.

(kernel_file: str)

Source from the content-addressed store, hash-verified

207
208
209def _kernel_results_path(kernel_file: str) -> Path:
210 """Derive the per-kernel results TSV path from a kernel file name."""
211 name = Path(kernel_file).stem # e.g. kernel_matmul_1
212 return RESULTS_DIR / f"{name}_results.tsv"
213
214
215def _append_result_row(kernel_file: str, row: dict) -> None:

Callers 2

_append_result_rowFunction · 0.85
_load_result_rowsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected