Skip to content

Commit

Permalink
🔊 change print to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
chriamue committed Dec 25, 2023
1 parent cc6630c commit 98ead00
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/llm/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ pub fn create_model(
total_size_in_bytes +=
elem_count * tensor.ggml_dtype.type_size() / tensor.ggml_dtype.blck_size();
}
println!(
debug!(
"loaded {:?} tensors ({}) in {:.2}s",
model.tensor_infos.len(),
&format_size(total_size_in_bytes),
Expand All @@ -103,13 +103,13 @@ pub fn create_model(
total_size_in_bytes +=
elem_count * tensor.dtype().type_size() / tensor.dtype().blck_size();
}
println!(
debug!(
"loaded {:?} tensors ({}) in {:.2}s",
content.tensors.len(),
&format_size(total_size_in_bytes),
start.elapsed().as_secs_f32(),
);
println!("params: {:?}", content.hparams);
debug!("params: {:?}", content.hparams);
let default_gqa = match model {
Models::L7b
| Models::L13b
Expand Down

0 comments on commit 98ead00

Please sign in to comment.