Introduction

GLM‑5.3‑Flash is the first natively multimodal model in the GLM‑5 series. It has 320B total parameters with 18B activated per token. It outperforms GLM‑5.2 and scores 57 points on the globally‑recognized Artificial Analysis Composite Intelligence Index (AA Composite Intelligence Index), ranking among the world’s frontier models and matching the score of Claude Opus 4.8. In Z.ai’s internal Code‑Bench experiential evaluation, its coding performance is on par with Claude Opus 4.8.

The FlagOS community has completed day‑0 adaptation, precision alignment and deployment validation for AI chips from nine vendors: T‑Head (平头哥), NVIDIA(英伟达), Moore Threads(摩尔), Ascend(华为), Hygon(海光), MetaX(沐曦), Tsingmicro (清微智能), Kunlunxin(昆仑芯) and Sunrise(曦望). Model images have been published to ModelScope and HuggingFace, enabling developers to get out‑of‑the‑box solutions for respective chips directly.

Integrated Deployment

  • Out-of-the-box inference scripts with pre-configured hardware and software parameters
  • Released FlagOS-Sunrise 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 GLM-5.3-Flash-Nvidia-Origin GLM-5.3-Flash-Sunrise-FlagOS
GPQA_Diamond 92.9 Evaluating
MuSR 78.57 Evaluating

User Guide

Environment Setup

Item Version
Docker Version Docker version 28.5.1
Operating System 22.04.5 LTS

Operation Steps

Download FlagOS Image

docker pull harbor.baai.ac.cn/flagrelease-public/glm-5.3-flash-sunrise001-gems5.0.2-treenone-cxnone-plugin0.2.3-vllm0.20.2-sglangnone-sglangflnone-cp310-ptpu0.2.3-tang0.25.0-x64-0.25.0:202609020858

Download Open-source Model Weights

pip install modelscope
modelscope download --model FlagRelease/GLM-5.3-Flash-INT8-sunrise-FlagOS --local_dir /path/to/GLM-5.3-Flash

Start the Container

docker run -d --privileged --network host --name "flagos" \
  -v /home/flagos/code/models/:/code/models \
  -v /usr/local/tangrt:/usr/local/tangrt \
  -v /usr/local/pccl:/usr/local/pccl \
  -v /data:/data \
  "harbor.baai.ac.cn/flagrelease-public/glm-5.3-flash-sunrise001-gems5.0.2-treenone-cxnone-plugin0.2.3-vllm0.20.2-sglangnone-sglangflnone-cp310-ptpu0.2.3-tang0.25.0-x64-0.25.0:202609020858" /bin/bash -c "tail -f /dev/null"

Start the Server

# 先反量化至BF16版本
flagos-compressor convert \
  --input  /path/to/GLM-5.3-Flash \
  --output /path/to/GLM-5.3-Flash-bf16 \
  --to bf16 \
  --backend cpu
  
  # 再量化到INT8
 flagos-compressor quantize \
  --input  /path/to/GLM-5.3-Flash-bf16 \
  --output /path/to/GLM-5.3-Flash-w8a8-flagos \
  --select moe \
  --bits 8 --activation-bits 8 --strategy channel --method mse \
  --n-candidates 64 \
  --backend cpu

# 服务启动命令
export VLLM_FL_FLAGOS_BLACKLIST="linear,mm,mm_out,bmm_out,bmm,addmm,addmm_out,add,sub,copy_,to_copy,_to_copy,mul" && vllm serve /path/to/GLM-5.3-Flash-w8a8-flagos --tensor-parallel-size 8 --max-num-batched-tokens 2048 --max-num-seqs 1 --gpu-memory-utilization 0.95 --port 7528 --enforce-eager --max-model-len 2048 --skip-mm-profiling

Service Invocation

Invocation Script

curl http://localhost:7528/v1/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "/code/models/GLM-5.3-Flash-w8a8-flagos",
    "prompt": "你好,请介绍一下你自己",
    "max_tokens": 100,
    "temperature": 0.7
  }'

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 ZhipuAI/GLM-5.3-Flash and are open‑sourced under the Apache License 2.0: https://www.apache.org/licenses/LICENSE-2.0.txt

Downloads last month
27
Safetensors
Model size
321B params
Tensor type
BF16
·
F8_E4M3
·
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support