Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stable-diffusion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1806,7 +1806,7 @@ sd_image_t* img2img(sd_ctx_t* sd_ctx,

size_t t2 = ggml_time_ms();

LOG_INFO("img2img completed in %.2fs", (t1 - t0) * 1.0f / 1000);
LOG_INFO("img2img completed in %.2fs", (t2 - t0) * 1.0f / 1000);

return result_images;
}
Expand Down
Loading