Skip to content

Commit e62e307

Browse files
committed
change log level of "processing %i tiles"
1 parent 3170c13 commit e62e307

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
@@ -634,7 +634,7 @@ __STATIC_INLINE__ void sd_tiling(ggml_tensor* input, ggml_tensor* output, const
634634
ggml_tensor* output_tile = ggml_new_tensor_4d(tiles_ctx, GGML_TYPE_F32, tile_size * scale, tile_size * scale, output->ne[2], 1);
635635
on_processing(input_tile, NULL, true);
636636
int num_tiles = ceil((float)input_width / non_tile_overlap) * ceil((float)input_height / non_tile_overlap);
637-
LOG_INFO("processing %i tiles", num_tiles);
637+
LOG_DEBUG("processing %i tiles", num_tiles);
638638
pretty_progress(1, num_tiles, 0.0f);
639639
int tile_count = 1;
640640
bool last_y = false, last_x = false;

0 commit comments

Comments
 (0)