Skip to content
Open
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
2 changes: 1 addition & 1 deletion kernel-agentic/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
TORCH_FILE_DIR ?= datasets/torch_example_kernels
KERNEL_FILE_DIR ?= kernel_codes
KERNEL_LANG ?= hip
MODE ?= multimodal
MODE ?= text

ACTIVATE_VENV_CMD = exec bash -c "source .venv/bin/activate && exec bash"

Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Binary file removed kernel-agentic/docs/hip/hip_spec.pdf
Binary file not shown.
8,151 changes: 0 additions & 8,151 deletions kernel-agentic/docs/hip/hip_spec_mm/hip_spec-with-image-refs-enhanced.html

This file was deleted.

12,243 changes: 0 additions & 12,243 deletions kernel-agentic/docs/hip/hip_spec_mm/hip_spec-with-image-refs-enhanced.md

This file was deleted.

6,706 changes: 0 additions & 6,706 deletions kernel-agentic/docs/hip/hip_spec_mm/hip_spec-with-image-refs.html

This file was deleted.

11,189 changes: 0 additions & 11,189 deletions kernel-agentic/docs/hip/hip_spec_mm/hip_spec-with-image-refs.md

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
12,243 changes: 0 additions & 12,243 deletions kernel-agentic/docs/hip/hip_spec_mm/hip_spec-with-images-enhanced.md

This file was deleted.

11,189 changes: 0 additions & 11,189 deletions kernel-agentic/docs/hip/hip_spec_mm/hip_spec-with-images.md

This file was deleted.

3 changes: 2 additions & 1 deletion kernel-agentic/src/data/build_vector_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ def build(language: str, docs_path: str | None, mode: str) -> None:
else: # text
pdfs = list(docs_dir.glob("*.pdf"))
texts = [*docs_dir.rglob("*.txt")]
files = pdfs + texts
mds = [*docs_dir.rglob("*.md")]
files = pdfs + texts + mds

if not files:
print(f"⚠ No source files found for {language.upper()} ({mode})")
Expand Down