Skip to content

Commit 65f636a

Browse files
committed
change log level of "processing %i tiles"
1 parent 4e026c7 commit 65f636a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml_extend.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ __STATIC_INLINE__ void sd_tiling(ggml_tensor* input, ggml_tensor* output, const
560560
ggml_tensor* output_tile = ggml_new_tensor_4d(tiles_ctx, GGML_TYPE_F32, tile_size * scale, tile_size * scale, output->ne[2], 1);
561561
on_processing(input_tile, NULL, true);
562562
int num_tiles = ceil((float)input_width / non_tile_overlap) * ceil((float)input_height / non_tile_overlap);
563-
LOG_INFO("processing %i tiles", num_tiles);
563+
LOG_DEBUG("processing %i tiles", num_tiles);
564564
pretty_progress(1, num_tiles, 0.0f);
565565
int tile_count = 1;
566566
bool last_y = false, last_x = false;

0 commit comments

Comments
 (0)