FlagRelease/Qwen-Image-2.1-BF16-ascend-FlagOS

🤗 Hugging Face sourceapache-2.07.1B params14 GBsafetensorsChecksums witnessedupdated today
No torrent yet

Introduction

FlagOS is a fully open-source system software stack for heterogeneous AI chips. It unifies the model–system–chip layers to enable a "develop once, run anywhere" workflow, eliminating the fragmentation among vendor-specific software stacks and substantially lowering the cost of porting AI workloads across accelerators. In this release, Qwen-Image-2.1 leverages the FlagOS software stack to provide direct multi-chip support. By integrating the Triton-based operator library FlagGems via the Torch-FL plugin, FlagOS enables seamless adaptation of the Diffusers library across chip platforms; the usage experience remains identical to that on NVIDIA, requiring zero code modifications. Inference accuracy across all platforms has been aligned with the official implementation.

Integrated Deployment

  • Out-of-the-box inference scripts with pre-configured hardware and software parameters
  • Released FlagOS-Ascend container image supporting deployment within minutes

Consistency Validation

  • Rigorously evaluated through benchmark testing: Performance and results from the FlagOS software stack are compared against native stacks on multiple public.

Evaluation Results

Benchmark Result

Metrics Qwen-Image-2.1-Nvidia-Origin Qwen-Image-2.1-Ascend-FlagOS
T2I-100 (ClipScore) 33.66 33.31

User Guide

Environment Setup

Item Version
Docker Version Docker version 20.10.8
Operating System openEuler 22.03 (LTS-SP4)

Operation Steps

Download FlagOS Image

docker pull harbor.baai.ac.cn/flagrelease-public/qwen-image-2.1-ascend001-gems5.4.0-tree0.6.2-cxnone-pluginnone-vllmnone-sglang0.5.17-sglangflnone-cp311-ptnpunone-cann90-a64-none:202609200803

Download Open-source Model Weights

pip install modelscope
modelscope download --model FlagRelease/Qwen-Image-2.1-BF16-ascend-FlagOS --local_dir /data/Qwen-Image-2.1

Start the Container

docker run -d \
  --name qwen-image-2.1-0920-torch-fl-precommit-20260920 \
  --runtime=ascend --privileged --network host --ipc host \
  --shm-size=128g --security-opt label=disable \
  -e ASCEND_RT_VISIBLE_DEVICES=15 \
  -v /public-flash/models/Qwen-Image-2.1:/models/Qwen-Image-2.1:ro \
  -v /usr/local/Ascend/driver:/usr/local/Ascend/driver:ro \
  -v /data/adaptation/Qwen-Image-2.1/torch-fl/ascend910c/qwen-image-2.1-torch-fl-20260917/bench-pr342-3e72cd9/precommit-torchfl-20260920/output:/output \
  --entrypoint /bin/bash \
  harbor.baai.ac.cn/flagrelease-public/qwen-image-2.1-ascend001-gems5.4.0-tree0.6.2-cxnone-pluginnone-vllmnone-sglang0.5.17-sglangflnone-cp311-ptnpunone-cann90-a64-none:202609200803 \
  -lc 'sleep infinity'

Start the Server

export QWEN_IMAGE_21_MODEL=/data/Qwen-Image-2.1
export QWEN_IMAGE_21_DIFFUSERS=/opt/qwen21/ref/src
export QWEN21_ZERO_FALLBACK_INTEGRATION=1
export QWEN21_FLAGGEMS_INDEX_OVERRIDE_EXISTING=1
export QWEN21_INFERENCE_MODE=1
export QWEN21_SDPA_GQA_FLAGGEMS=0
export GEMS_VENDOR=ascend
export FLAGOS_OP_ones=ascend
export FLAGOS_OP_gelu=ascend
export FLAGOS_OP_where__self=ascend
export FLAGOS_OP_constant_pad_nd=ascend
export FLAGOS_OP__scaled_dot_product_efficient_attention=ascend
export FLAGOS_LOG=fallback
export FLAGOS_LOG_FALLBACK=1
export FLAGOS_LOG_DISPATCH=0
export OUT_DIR=/output
export LOG=/output/bench.log
unset ALL_USE_VENDOR ALL_USE_FLAGGEMS

test -r "$QWEN_IMAGE_21_MODEL/model_index.json"
test -d "$QWEN_IMAGE_21_DIFFUSERS/diffusers/pipelines/qwenimage21"
mkdir -p "$OUT_DIR"

exec bash /opt/qwen21/bench/tests/manual/qwen_image_21/run.sh bench \
  --device flagos --batch 1 --height 1024 --width 1024 --steps 40 \
  --seed 42 --true-cfg-scale 1.0 --warmup 2 --min-run-time 60 \
  --out "$OUT_DIR/bench.json" --image "$OUT_DIR/bench.png"

AnythingLLM Integration Guide

1. Download & Install

  • Visit the official site: https://anythingllm.com/
  • Choose the appropriate version for your OS (Windows/macOS/Linux)
  • Follow the installation wizard to complete the setup

2. Configuration

  • Launch AnythingLLM
  • Open settings (bottom left, fourth tab)
  • Configure core LLM parameters
  • Click "Save Settings" to apply changes

3. Model Interaction

  • After model loading is complete:
  • Click "New Conversation"
  • Enter your question (e.g., "Explain the basics of quantum computing")
  • Click the send button to get a response

Technical Overview

FlagOS is a fully open-source system software stack designed to unify the "model–system–chip" layers and foster an open, collaborative ecosystem. It enables a "develop once, run anywhere" workflow across diverse AI accelerators, unlocking hardware performance, eliminating fragmentation among vendor-specific software stacks, and substantially lowering the cost of porting and maintaining AI workloads. With core technologies such as the FlagScale, together with vllm-plugin-fl, distributed training/inference framework, FlagGems universal operator library, FlagCX communication library, and FlagTree unified compiler, the FlagRelease platform leverages the FlagOS stack to automatically produce and release various combinations of <chip + open-source model>. This enables efficient and automated model migration across diverse chips, opening a new chapter for large model deployment and application.

FlagGems

FlagGems is a high-performance, generic operator libraryimplemented in Triton language. It is built on a collection of backend-neutralkernels that aims to accelerate LLM (Large-Language Models) training and inference across diverse hardware platforms.

FlagTree

FlagTree is an open source, unified compiler for multipleAI chips project dedicated to developing a diverse ecosystem of AI chip compilers and related tooling platforms, thereby fostering and strengthening the upstream and downstream Triton ecosystem. Currently in its initial phase, the project aims to maintain compatibility with existing adaptation solutions while unifying the codebase to rapidly implement single-repository multi-backend support. Forupstream model users, it provides unified compilation capabilities across multiple backends; for downstream chip manufacturers, it offers examples of Triton ecosystem integration.

FlagScale and vllm-plugin-fl

Flagscale is a comprehensive toolkit designed to supportthe entire lifecycle of large models. It builds on the strengths of several prominent open-source projects, including Megatron-LM and vLLM, to provide a robust, end-to-end solution for managing and scaling large models. vllm-plugin-fl is a vLLM plugin built on the FlagOS unified multi-chip backend, to help flagscale support multi-chip on vllm framework.

FlagCX

FlagCX is a scalable and adaptive cross-chip communication library. It serves as a platform where developers, researchers, and AI engineers can collaborate on various projects, contribute to the development of cutting-edge AI solutions, and share their work with the global community.

FlagEval Evaluation Framework

FlagEval is a comprehensive evaluation system and open platform for large models launched in 2023. It aims to establish scientific, fair, and open benchmarks, methodologies, and tools to help researchers assess model and training algorithm performance. It features:

  • Multi-dimensional Evaluation: Supports 800+ modelevaluations across NLP, CV, Audio, and Multimodal fields,covering 20+ downstream tasks including language understanding and image-text generation.
  • Industry-Grade Use Cases: Has completed horizonta1 evaluations of mainstream large models, providing authoritative benchmarks for chip-model performance validation.

Contributing

We warmly welcome global developers to join us:

  1. Submit Issues to report problems
  2. Create Pull Requests to contribute code
  3. Improve technical documentation
  4. Expand hardware adaptation support

License

The model weights are derived from Qwen/Qwen-Image-2.1 and are open‑sourced under the Apache License 2.0: https://www.apache.org/licenses/LICENSE-2.0.txt