Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Add TRT as a Backend #11173

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

ishan-modi
Copy link
Contributor

@ishan-modi ishan-modi commented Mar 30, 2025

What does this PR do?

WIP, aimed at adding new backend for quantization #11032

Depends on this

# !pip install "git+https://github.com/ishan-modi/diffusers.git@add-trtquant-backend"
# !pip install "git+https://github.com/ishan-modi/TensorRT-Model-Optimizer.git@fixes-hfargs-order#egg=nvidia-modelopt[torch, onnx]"

import torch
from diffusers import SanaTransformer2DModel

checkpoint = "Efficient-Large-Model/Sana_600M_1024px_diffusers"

# quant_config = {"quant_type": "INT4_WO", "quant_method": "modelopt", "modules_to_not_convert": ["conv"], "block_quantize": True}
quant_config = {"quant_type": "FP8_WO", "quant_method": "modelopt", "modules_to_not_convert": ["conv"]}
model = SanaTransformer2DModel.from_pretrained(checkpoint, subfolder="transformer", quantization_config=quant_config, torch_dtype=torch.bfloat16).to('cuda')

hidden = torch.randn((2,32,32,32), dtype=torch.bfloat16).to('cuda')
encoder = torch.randn((2,10,300,2304), dtype=torch.bfloat16).to('cuda')
timestep = torch.Tensor([0,0]).to('cuda')
with torch.no_grad():
    output = model(hidden, encoder, timestep)

@ishan-modi ishan-modi marked this pull request as draft March 30, 2025 07:45
@ishan-modi
Copy link
Contributor Author

@sayakpaul, would you mind giving a quick look and suggestions

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant