We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent43a70e8 commit200cb6fCopy full SHA for 200cb6f
ggml_extend.hpp
@@ -848,8 +848,6 @@ __STATIC_INLINE__ void sd_tiling_non_square(ggml_tensor* input,
848
LOG_DEBUG("num tiles : %d, %d", num_tiles_x, num_tiles_y);
849
LOG_DEBUG("optimal overlap : %f, %f (targeting %f)", tile_overlap_factor_x, tile_overlap_factor_y, tile_overlap_factor);
850
851
-GGML_ASSERT(input_width %2 ==0 && input_height %2 ==0 && output_width %2 ==0 && output_height %2 ==0);// should be multiple of 2
852
-
853
int tile_overlap_x = (int32_t)(p_tile_size_x * tile_overlap_factor_x);
854
int non_tile_overlap_x = p_tile_size_x - tile_overlap_x;
855