Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 99cb442

Browse files
committedFeb 25, 2024·
fix: fix the issue with dynamic linking
1 parent 7116f22 commit 99cb442

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎examples/cli/main.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include <string>
77
#include <vector>
88

9-
#include "preprocessing.hpp"
9+
// #include "preprocessing.hpp"
1010
#include "stable-diffusion.h"
1111

1212
#define STB_IMAGE_IMPLEMENTATION
@@ -642,7 +642,6 @@ int main(int argc, const char* argv[]) {
642642
3,
643643
input_image_buffer};
644644
if (params.canny_preprocess) { // apply preprocessor
645-
LOG_INFO("Applying canny preprocessor");
646645
control_image->data = preprocess_canny(control_image->data,
647646
control_image->width,
648647
control_image->height,

‎util.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#include <thread>
1111
#include <unordered_set>
1212
#include <vector>
13+
#include "preprocessing.hpp"
1314

1415
#if defined(__APPLE__) && defined(__MACH__)
1516
#include <sys/sysctl.h>

0 commit comments

Comments
 (0)
Please sign in to comment.