AI/EXPLORER
ToolsCategoriesSitesLLMsCompareAI QuizAlternativesPremium
—AI Tools
—Sites & Blogs
—LLMs & Models
—Categories
AI Explorer

Find and compare the best artificial intelligence tools for your projects.

Made within France

Explore

  • ›All tools
  • ›Sites & Blogs
  • ›LLMs & Models
  • ›Compare
  • ›Chatbots
  • ›AI Images
  • ›Code & Dev

Company

  • ›Premium
  • ›About
  • ›Contact
  • ›Blog

Legal

  • ›Legal notice
  • ›Privacy
  • ›Terms

© 2026 AI Explorer·All rights reserved.

HomeLLMsNitro 1 PixArt

Nitro 1 PixArt

by amd

Open source · 31k downloads · 5 likes

1.0
(5 reviews)ImageAPI & Local
About

Nitro 1 PixArt is a text-to-image generation model optimized for ultra-fast execution, capable of producing high-resolution visuals in a single step through advanced distillation. Built on a transformer-based architecture, it inherits the performance of PixArt-Sigma while drastically reducing resource requirements, with a 90.9% decrease in computational demands for nearly equivalent quality. Ideal for applications requiring instant generation, such as creative tools, visual assistants, or automated pipelines, it stands out for its energy efficiency and compatibility with AMD infrastructure. Its fast training process and open-source code also make it an accessible solution for research and prototyping.

Documentation

AMD Nitro-1

image/jpeg

Introduction

Nitro-1 is a series of efficient text-to-image generation models that are distilled from popular diffusion models on AMD Instinct™ GPUs. The release consists of:

  • Nitro-1-SD: a UNet-based one-step model distilled from Stable Diffusion 2.1.
  • Nitro-1-PixArt: a high resolution transformer-based one-step model distilled from PixArt-Sigma.

⚡️ Open-source code! The models are based on our re-implementation of Latent Adversarial Diffusion Distillation, the method used to build the popular Stable Diffusion 3 Turbo model. Since the original authors didn't provide training code, we release our re-implementation to help advance further research in the field.

Details

  • Model architecture: Nitro-1-PixArt has the same architecture as PixArt-Sigma and is compatible with the diffusers pipeline.
  • Inference steps: This model is distilled to perform inference in just a single step. However, the training code also supports distilling a model for 2, 4 or 8 steps.
  • Hardware: We use a single node consisting of 4 AMD Instinct™ MI250 GPUs for distilling Nitro-1-PixArt.
  • Dataset: We use 1M prompts from DiffusionDB and generate the corresponding images from the base PixArt-Sigma model.
  • Training cost: The distillation process achieves reasonable results in less than 2 days on a single node.

Quickstart

Python
from diffusers import PixArtSigmaPipeline
import torch
from safetensors.torch import load_file

pipe = PixArtSigmaPipeline.from_pretrained("PixArt-alpha/PixArt-Sigma-XL-2-1024-MS")

ckpt_path = '<path to distilled checkpoint>'
transformer_state_dict = load_file(ckpt_path)
pipe.transformer.load_state_dict(transformer_state_dict)
pipe = pipe.to("cuda")

image = pipe(prompt='a photo of a cat',
             num_inference_steps=1,
             guidance_scale=0,
             timesteps=[400]).images[0]

For more details on training and evaluation please visit the GitHub repo.

Results

Compared to PixArt-Sigma, our model achieves a 90.9% reduction in FLOPs at the cost of just 3.7% lower CLIP score and 10.5% higher FID.

ModelFID ↓CLIP ↑FLOPsLatency on AMD Instinct MI250 (sec)
PixArt-Sigma, 20 steps34.140.3289187.967.46
Nitro-1-PixArt, 1 step37.750.316717.040.53

License

Copyright (c) 2018-2024 Advanced Micro Devices, Inc. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Capabilities & Tags
diffuserstext-to-image
Links & Resources
Specifications
CategoryImage
AccessAPI & Local
LicenseOpen Source
PricingOpen Source
Rating
1.0

Try Nitro 1 PixArt

Access the model directly