File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -284,10 +284,10 @@ class StableDiffusionGGML {
284
284
model_loader.set_wtype_override (GGML_TYPE_F32, " vae." );
285
285
}
286
286
287
- LOG_INFO (" Weight type: %s" , model_wtype != SD_TYPE_COUNT ? ggml_type_name (model_wtype) : " ??" );
288
- LOG_INFO (" Conditioner weight type: %s" , conditioner_wtype != SD_TYPE_COUNT ? ggml_type_name (conditioner_wtype) : " ??" );
289
- LOG_INFO (" Diffusion model weight type: %s" , diffusion_model_wtype != SD_TYPE_COUNT ? ggml_type_name (diffusion_model_wtype) : " ??" );
290
- LOG_INFO (" VAE weight type: %s" , vae_wtype != SD_TYPE_COUNT ? ggml_type_name (vae_wtype) : " ??" );
287
+ LOG_INFO (" Weight type: %s" , model_wtype != GGML_TYPE_COUNT ? ggml_type_name (model_wtype) : " ??" );
288
+ LOG_INFO (" Conditioner weight type: %s" , conditioner_wtype != GGML_TYPE_COUNT ? ggml_type_name (conditioner_wtype) : " ??" );
289
+ LOG_INFO (" Diffusion model weight type: %s" , diffusion_model_wtype != GGML_TYPE_COUNT ? ggml_type_name (diffusion_model_wtype) : " ??" );
290
+ LOG_INFO (" VAE weight type: %s" , vae_wtype != GGML_TYPE_COUNT ? ggml_type_name (vae_wtype) : " ??" );
291
291
292
292
LOG_DEBUG (" ggml tensor size = %d bytes" , (int )sizeof (ggml_tensor));
293
293
You can’t perform that action at this time.
0 commit comments