Skip to content

Commit 9547900

Browse files
committed
change log level of "processing %i tiles"
1 parent 0202f6b commit 9547900

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml_extend.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ __STATIC_INLINE__ void sd_tiling(ggml_tensor* input, ggml_tensor* output, const
621621
ggml_tensor* output_tile = ggml_new_tensor_4d(tiles_ctx, GGML_TYPE_F32, output_tile_size, output_tile_size, output->ne[2], 1);
622622
on_processing(input_tile, NULL, true);
623623
int num_tiles = num_tiles_x * num_tiles_y;
624-
LOG_INFO("processing %i tiles", num_tiles);
624+
LOG_DEBUG("processing %i tiles", num_tiles);
625625
pretty_progress(1, num_tiles, 0.0f);
626626
int tile_count = 1;
627627
bool last_y = false, last_x = false;

0 commit comments

Comments
 (0)