Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
EricLBuehler committed Feb 6, 2025
1 parent 25cbfca commit 8456349
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions candle-core/src/quantized/iq_quants/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ impl GgmlType for BlockIQ4xs {
bail!("Input length must be multiple of QK_K = {}", QK_K);
}

println!("starting");
quantize_iq4_xs(xs, ys, 1, k, None)?;

Ok(())
Expand Down Expand Up @@ -223,6 +224,7 @@ fn quantize_iq4_xs(
for _row in 0..nrow {
// Each row has `nblock` blocks:
for ibl in 0..nblock {
println!("ibl {ibl}");
let block = &mut ys[dst_offset + ibl];

let qw = quant_weights.map(|qw_all| {
Expand Down

0 comments on commit 8456349

Please sign in to comment.