Complete the de-brand across ALL tracked files: CHANGELOG/READMEs, .github workflows (candle-pyo3 -> hanzo-ml-pyo3 etc.), doc comments, peripheral-crate tests/examples (candle_onnx -> hanzo_onnx, candle_flash_attn -> hanzo_flash_attn, candle_metal_kernels -> hanzo_metal_kernels, candle_rocm_kernels -> hanzo_rocm_kernels), the CandleAlgo cudnn alias -> HanzoAlgo, temp-file prefixes, URLs (huggingface/candle -> hanzoai/ml, docs.rs/candle-* -> docs.rs/hanzo-*), EricLBuehler -> hanzoai, and the repository metadata. `git grep candle` now returns 0. Core build verified: cargo check -p hanzo-ml --features vulkan green, Qwen3-0.6B forward argmax matches CPU (rel 4.3e-6). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
17 lines
268 B
Makefile
17 lines
268 B
Makefile
.PHONY: clean-ptx clean test
|
|
|
|
clean-ptx:
|
|
find target -name "*.ptx" -type f -delete
|
|
echo "" > hanzo-kernels/src/lib.rs
|
|
touch hanzo-kernels/build.rs
|
|
touch hanzo-ml-examples/build.rs
|
|
touch hanzo-flash-attn/build.rs
|
|
|
|
clean:
|
|
cargo clean
|
|
|
|
test:
|
|
cargo test
|
|
|
|
all: test
|