This repository contains a fully C++ implementation of Stable Diffusion-based image synthesis, including the original txt2img, img2img and inpainting capabilities and the safety checker. This solution does not depend on Python and runs the entire image generation process in a single process with competitive performance, making deployments significantly simpler and smaller, essentially consisting a few executable and library files, and the model weights. Using the library it is possible to integrate Stable Diffusion into almost any application - as long as it can import C++ or C functions, but it is most useful for the developers of realtime graphics applications and games, which are often realized with C++.
The implementation uses the ONNX to store the mathematical models involved in the image generation. These ONNX models are then executed using the ONNX runtime, which support a variety of platforms (Windows, Linux, MacOS, Android, iOS, WebAssembly etc.), and execution providers (such as NVIDIA CUDA / TensorRT; AMD ROCm, Apple CoreML, Qualcomm QNN, Microsoft DirectML and many more).
We provide an example integration called Unpaint which showcases how the libraries can be integrated in a simple WinUI based user interface. You may download a recent release from here to evaluate the performance characteristics of the solution.
Please note that you will need to install the provided test certificate to run the example app into your Trusted Root Certificate Authorities Store (in the local machine container), you can also resign the package with your own certificate to make it install.
The current codebase and the resulting Nuget packages target Windows and use DirectML, however only small sections of the code utilize Windows specific APIs, and thus could be ported to other platforms with minimal effort.
The source code of this library is provided under the MIT license.
Prebuilt versions of the project can be retrieved from Nuget under the name Axodox.MachineLearning
and added to Visual Studio C++ projects (both desktop and UWP projects are supported) with the x64 platform.
Basic integration:
- Add the
Axodox.Common
andAxodox.MachineLearning
packages to your project - Make sure to only have x64 platform in your project as this lib is x64 only for now
- Ensure that your compiler is set to C++20, we also recommend enabling all warnings and conformance mode
- Add the following include statement to your code file or precompiled header:
#include "Include/Axodox.MachineLearning.h"
- Follow this example code to integrate the pipeline: https://github.com/axodox/unpaint/blob/main/Unpaint/StableDiffusionModelExecutor.cpp
We recommend adding appropriate safety mechanisms to your app to suppress inappropriate outputs of StableDiffusion, the performance overhead is insignificant.
The Stable Diffusion models we use have been generated using Microsoft Olive, please follow the linked example to convert models from HuggingFace. By changing the script you can also convert models stored on your disk from various formats (e.g. *.safetensors
). You can find some preconverted models here for testing.
Building the library is required to make and test changes. You will need to have the following installed to build the library:
- Visual Studio 2022
- Select the following workloads:
- Desktop development with C++
- Game development with C++
- To build Unpaint as well also select these individual packages:
- Universal Windows Platform development
- C++ (v143) Universal Windows Platform tools
- Select the following workloads:
You can either run build_nuget.ps1
or open Axodox.MachineLearning.sln
and build from Visual Studio.
Once you have built the library, you override your existing nuget package install by setting the AxodoxMachineLearning-Location
environment variable to point to your local build.
For example
C:\dev\axodox-machinelearning\Axodox.MachineLearning.Universal
for an UWP app andC:\dev\axodox-machinelearning\Axodox.MachineLearning.Desktop
for a desktop app.
Then add the project pointed by the path to the solution of your own project. This allows to add all projects into the same solution and make changes on the library and your app seamlessly without copying files repeatedly.