Views
No views yet
| Setting | Value |
|---|---|
| Tensor Parallel | 2 |
| Context Length | 8192 |
| VRAM per GPU | 14.7 GB |
| Throughput | 19.4 tokens/sec |
glm4_moe_lite architecture support.1from vllm import LLM, SamplingParams
2
3llm = LLM(
4 model="marksverdhei/GLM-4.7-Flash-fp8",
5 tensor_parallel_size=2,
6 max_model_len=8192,
7 enforce_eager=True, # Optional: disable CUDA graphs to save VRAM
8)
9
10outputs = llm.generate(["Hello, world!"], SamplingParams(max_tokens=100))
11print(outputs[0].outputs[0].text)