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>
29 lines
487 B
TOML
29 lines
487 B
TOML
[package]
|
|
name = "hanzo-rocm-kernels"
|
|
version = "0.10.2"
|
|
edition = "2021"
|
|
|
|
description = "ROCm/HIP kernels for Hanzo"
|
|
|
|
[dependencies]
|
|
dirs = "5"
|
|
half = { version = "2.5.0", features = [
|
|
"num-traits",
|
|
"use-intrinsics",
|
|
"rand_distr",
|
|
] }
|
|
rocm-rs = "0.5"
|
|
sha2 = "0.10"
|
|
thiserror = "2"
|
|
tracing = "0.1.41"
|
|
|
|
[dev-dependencies]
|
|
clap = { version = "4.5.49", features = ["derive"] }
|
|
anyhow = "1"
|
|
rand = "0.9.2"
|
|
rand_distr = "0.5.1"
|
|
|
|
[profile.profiling]
|
|
inherits = "release"
|
|
debug = 2
|