File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 338338            "StableDiffusion3ControlNetPipeline" ,
339339            "StableDiffusion3Img2ImgPipeline" ,
340340            "StableDiffusion3InpaintPipeline" ,
341-             "StableDiffusion3PAGPipeline" ,
342341            "StableDiffusion3PAGImg2ImgPipeline" ,
342+             "StableDiffusion3PAGPipeline" ,
343343            "StableDiffusion3Pipeline" ,
344344            "StableDiffusionAdapterPipeline" ,
345345            "StableDiffusionAttendAndExcitePipeline" ,
Original file line number Diff line number Diff line change @@ -974,7 +974,7 @@ def multistep_dpm_solver_third_order_update(
974974                (sigma_t  /  sigma_s0  *  torch .exp (- h )) *  sample 
975975                +  (alpha_t  *  (1.0  -  torch .exp (- 2.0  *  h ))) *  D0 
976976                +  (alpha_t  *  ((1.0  -  torch .exp (- 2.0  *  h )) /  (- 2.0  *  h ) +  1.0 )) *  D1 
977-                 +  (alpha_t  *  ((1.0  -  torch .exp (- 2.0  *  h ) -  2.0  *  h ) /  (2.0  *  h )** 2  -  0.5 )) *  D2 
977+                 +  (alpha_t  *  ((1.0  -  torch .exp (- 2.0  *  h ) -  2.0  *  h ) /  (2.0  *  h )  **   2  -  0.5 )) *  D2 
978978                +  sigma_t  *  torch .sqrt (1.0  -  torch .exp (- 2  *  h )) *  noise 
979979            )
980980        return  x_t 
Original file line number Diff line number Diff line change @@ -928,7 +928,7 @@ def singlestep_dpm_solver_third_order_update(
928928                    (sigma_t  /  sigma_s2  *  torch .exp (- h )) *  sample 
929929                    +  (alpha_t  *  (1.0  -  torch .exp (- 2.0  *  h ))) *  D0 
930930                    +  (alpha_t  *  ((1.0  -  torch .exp (- 2.0  *  h )) /  (- 2.0  *  h ) +  1.0 )) *  D1 
931-                     +  (alpha_t  *  ((1.0  -  torch .exp (- 2.0  *  h ) +  (- 2.0  *  h )) /  (- 2.0  *  h )** 2  -  0.5 )) *  D2 
931+                     +  (alpha_t  *  ((1.0  -  torch .exp (- 2.0  *  h ) +  (- 2.0  *  h )) /  (- 2.0  *  h )  **   2  -  0.5 )) *  D2 
932932                    +  sigma_t  *  torch .sqrt (1.0  -  torch .exp (- 2  *  h )) *  noise 
933933                )
934934        return  x_t 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments