diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 09eb4a2..ae0f000 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -151,7 +151,7 @@ jobs:
uses: Jimver/cuda-toolkit@v0.2.11
with:
cuda: '12.2.0'
-
+
- name: Peek cuda-toolkit info
id: peek_cuda_toolkit
if: ${{ matrix.build == 'cuda12' }}
@@ -159,7 +159,7 @@ jobs:
echo "Installed cuda version is: ${{steps.cuda-toolkit.outputs.cuda}}"
echo "Cuda install location: ${{steps.cuda-toolkit.outputs.CUDA_PATH}}"
nvcc -V
-
+
- name: Build
id: cmake_build
run: |
@@ -190,7 +190,8 @@ jobs:
id: pack_artifacts
if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/main' ) || github.event.inputs.create_release == 'true' }}
run: |
- 7z a stable-diffusion-${{ env.BRANCH_NAME }}-${{ steps.commit.outputs.short }}-bin-win-${{ matrix.build }}-x64.zip .\build\bin\Release\sd-abi.dll
+ Rename-Item -Path .\build\bin\Release\sd-abi.dll -NewName sd-abi_${{ matrix.build }}.dll
+ 7z a stable-diffusion-${{ env.BRANCH_NAME }}-${{ steps.commit.outputs.short }}-bin-win-${{ matrix.build }}-x64.zip .\build\bin\Release\sd-abi_${{ matrix.build }}.dll
- name: Upload artifacts
if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/main' ) || github.event.inputs.create_release == 'true' }}
diff --git a/.idea/stable-diffusion.cpp-build.iml b/.idea/stable-diffusion.cpp-build.iml
new file mode 100644
index 0000000..f08604b
--- /dev/null
+++ b/.idea/stable-diffusion.cpp-build.iml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index e0a18d0..8ee2b4e 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -25,9 +25,10 @@
-
+
+
-
+
@@ -49,6 +50,7 @@
+
@@ -109,7 +111,7 @@
-
+
@@ -142,7 +144,7 @@
1701087466926
-
+
@@ -208,7 +210,23 @@
1701175409019
-
+
+
+ 1701191898311
+
+
+
+ 1701191898312
+
+
+
+ 1701191932994
+
+
+
+ 1701191932994
+
+
@@ -239,6 +257,10 @@
-
+
+
+
+
+
\ No newline at end of file
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ea30c17..21304a2 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -44,8 +44,7 @@ set(SD_ABI sd-abi)
add_library(${SD_ABI} SHARED
stable-diffusion-abi.cpp
- stable-diffusion-abi.h
- base64.hpp)
+ stable-diffusion-abi.h)
target_include_directories(${SD_ABI} PUBLIC .)
diff --git a/stable-diffusion-abi.cpp b/stable-diffusion-abi.cpp
index c4c0b06..b0f7aa0 100644
--- a/stable-diffusion-abi.cpp
+++ b/stable-diffusion-abi.cpp
@@ -1,7 +1,6 @@
#include "stable-diffusion-abi.h"
#include "stable-diffusion.h"
-#include "base64.hpp"
#include
#include
#include