1. 03 Nov, 2022 11 commits
  2. 02 Nov, 2022 14 commits
  3. 01 Nov, 2022 1 commit
    • MarkRich's avatar
      Add imagic to community pipelines (#958) · a793b1fe
      MarkRich authored
      * initial commit to add imagic to stable diffusion community pipelines
      
      * remove some testing changes
      
      * comments from PR review for imagic stable diffusion
      
      * remove changes from pipeline_stable_diffusion as part of imagic pipeline
      
      * clean up example code and add line back in to pipeline_stable_diffusion for imagic pipeline
      
      * remove unused functions
      
      * small code quality changes for imagic pipeline
      
      * clean up readme
      
      * remove hardcoded logging values for imagic community example
      
      * undo change for DDIMScheduler
      a793b1fe
  4. 31 Oct, 2022 11 commits
  5. 30 Oct, 2022 1 commit
  6. 29 Oct, 2022 2 commits
    • Pedro Cuenca's avatar
      Experimental: allow fp16 in `mps` (#961) · 95414bd6
      Pedro Cuenca authored
      * Docs: refer to pre-RC version of PyTorch 1.13.0.
      
      * Remove temporary workaround for unavailable op.
      
      * Update comment to make it less ambiguous.
      
      * Remove use of contiguous in mps.
      
      It appears to not longer be necessary.
      
      * Special case: use einsum for much better performance in mps
      
      * Update mps docs.
      
      * MPS: make pipeline work in half precision.
      95414bd6
    • Pedro Cuenca's avatar
      Tests: upgrade PyTorch cuda to 11.7 to fix examples tests. (#1048) · a59f9990
      Pedro Cuenca authored
      Tests: upgrade PyTorch cuda to 11.7.
      
      Otherwise the cuda versions of torch and torchvision mismatch, and
      examples tests fail. We were requesting cuda 11.6 for PyTorch, and the
      default torchvision (via setup.py).
      
      Another option would be to include torchvision in the same pip install
      line as torch.
      a59f9990