Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dneckel/web-stable-diffusion
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: mlc-ai/web-stable-diffusion
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 6 commits
  • 24 files changed
  • 5 contributors

Commits on May 10, 2023

  1. Support importing SD 2.1 (mlc-ai#29)

    Updated the SD UNet definition to support both v1.5 and v2.1. 
    
    Tested with
    
    ```
    import tvm
    from diffusers import StableDiffusionPipeline, EulerDiscreteScheduler
    import web_stable_diffusion.trace as trace
    from tvm.relax.frontend import detach_params
    
    # pipe = StableDiffusionPipeline.from_pretrained("runwayml/stable-diffusion-v1-5")
    
    model_id = "stabilityai/stable-diffusion-2-1-base"
    scheduler = EulerDiscreteScheduler.from_pretrained(model_id, subfolder="scheduler")
    pipe = StableDiffusionPipeline.from_pretrained(model_id, scheduler=scheduler)
    
    unet, params_unet = detach_params(trace.unet_latents_to_noise_pred(pipe, "mps"))
    
    ```
    masahi authored May 10, 2023
    Configuration menu
    Copy the full SHA
    80c3f1d View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2023

  1. Fix database to include the purity field (mlc-ai#42)

    This PR fixes the database of workloads to include the purity field
    which was introduced to TVM Unity not long ago.
    MasterJH5574 authored Jun 20, 2023
    Configuration menu
    Copy the full SHA
    eaddc23 View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2023

  1. Configuration menu
    Copy the full SHA
    06e3b2d View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2023

  1. Update README.md fix minor error typo (mlc-ai#47)

    "the the" => "the"
    g-schaffer authored Jul 18, 2023
    Configuration menu
    Copy the full SHA
    4fffbde View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2024

  1. Configuration menu
    Copy the full SHA
    7caa798 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2024

  1. Use the correct latents scale for sd/sdxl (mlc-ai#61)

    1. As i verifed, the latents scale is same for sd/sdxl, otherwise the
    image quality is terrible.
    2. Add attention to remind use the right vae net.
    fix mlc-ai#60
    sunzj authored Mar 12, 2024
    Configuration menu
    Copy the full SHA
    96b685a View commit details
    Browse the repository at this point in the history
Loading