feat: add LTX spatial latent upscale hires support (#1533)

This commit is contained in:
leejet
2026-05-20 22:27:09 +08:00
committed by GitHub
parent bdd937f29a
commit b3374e6a71
12 changed files with 1073 additions and 137 deletions

View File

@@ -332,6 +332,8 @@ typedef struct {
int steps;
float denoising_strength;
int upscale_tile_size;
float* custom_sigmas;
int custom_sigmas_count;
} sd_hires_params_t;
typedef struct {
@@ -382,6 +384,7 @@ typedef struct {
float vace_strength;
sd_tiling_params_t vae_tiling_params;
sd_cache_params_t cache;
sd_hires_params_t hires;
} sd_vid_gen_params_t;
typedef struct sd_ctx_t sd_ctx_t;