yujiaoliang/dsh-plugin-amdgpu-inspect
yujiaoliang★ 0JavaScript最后同步: 2026-08-15
Structured AMDGPU code-object and ISA inspection for DeepSeek Harness.
README 摘要
AMDGPU Inspect Structured AMDGPU code-object and ISA inspection for DeepSeek Harness. The plugin turns an existing HSACO or AMDGPU ELF file into bounded JSON that an agent can query. It reports compiler artifacts without compiling source, executing a kernel, predicting performance, or prescribing an optimization. Tools amdgpu object inspect List kernels and report public code-object metadata plus instruction-category counts: amdgpu isa query Query one kernel's normalized instruction stream without placing the complete disassembly in model context: The result contains addresses, opcodes, operands, categories, and a nextCursor when more matches remain. Install Requirements: - Linux - DeepSeek Harness developer preview - ROCm LLVM tools in /opt/rocm/llvm/bin or on PATH Install the bundle from GitHub: The package ships plain ESM JavaScript and needs no install-time build script. Kernel X-Ray Skill skills/kernel-xray/SKILL.md is the opinionated layer: it tells an agent how to compile before/after artifacts, query this plugin, form hypotheses, and require a workload measurement before claiming a speedup. The plugin itself remains a low-level facts API. Design - llvm-readelf --notes suppl…
在 GitHub 查看完整 README →