Skip to content

Commit e5bb560

Browse files
committed
rm print
1 parent 9533fb7 commit e5bb560

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/tts/tts-csm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ static bool ggml_callback(struct ggml_tensor * t, bool ask, void * user_data) {
154154
if (t && strncmp(t->name, "audio_embd.weight", 18) == 0) {
155155
if (ask) return true;
156156

157-
printf("%s tensor size: %lld, %lld\n", t->name, t->ne[0], t->ne[1]);
157+
// printf("%s tensor size: %lld, %lld\n", t->name, t->ne[0], t->ne[1]);
158158
GGML_ASSERT(t->type == GGML_TYPE_F32);
159159
GGML_ASSERT(t->ne[0] == 2048); // backbone embd size
160160
data->codebook.resize(ggml_nelements(t));

0 commit comments

Comments
 (0)