mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-05-08 18:30:50 +00:00
* sd: sync to master-417-43a70e8 * fix sdmain build * switch to upstream apply_loras() * refactor u8 path conversions and add it to the gguf reader
20 lines
385 B
C++
20 lines
385 B
C++
#include "stable-diffusion.h"
|
|
|
|
#ifndef SDCPP_BUILD_COMMIT
|
|
#define SDCPP_BUILD_COMMIT unknown
|
|
#endif
|
|
|
|
#ifndef SDCPP_BUILD_VERSION
|
|
#define SDCPP_BUILD_VERSION unknown
|
|
#endif
|
|
|
|
#define STRINGIZE2(x) #x
|
|
#define STRINGIZE(x) STRINGIZE2(x)
|
|
|
|
const char* sd_commit(void) {
|
|
return STRINGIZE(SDCPP_BUILD_COMMIT);
|
|
}
|
|
|
|
const char* sd_version(void) {
|
|
return STRINGIZE(SDCPP_BUILD_VERSION);
|
|
}
|