Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

high-performance-inference高性能推理

Agent Skill

high-performance-inference 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

441

周安装

18

GitHub Stars

公开资料未说明

下载量

143
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:high-performance-inference(高性能推理)
来源仓库:https://github.com/yonatangross/skillforge-claude-plugin
仓库路径:skills/high-performance-inference
安装命令:
npx skills add yonatangross/skillforge-claude-plugin --skill "high-performance-inference"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add yonatangross/skillforge-claude-plugin --skill "high-performance-inference"

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 支持基于关键词、任务场景或来源线索进行信息匹配与过滤。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 建议确认权限范围和维护状态,避免触发联网或文件读写操作。
  • high-performance-inference 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

High-Performance Inference

Optimize LLM inference for production with vLLM 0.14.x, quantization, and speculative decoding.

vLLM 0.14.0 (Jan 2026): PyTorch 2.9.0, CUDA 12.9, AttentionConfig API, Python 3.12+ recommended.

Overview

  • Deploying LLMs with low latency requirements
  • Reducing GPU memory for larger models
  • Maximizing throughput for batch inference
  • Edge/mobile deployment with constrained resources
  • Cost optimization through efficient hardware utilization

Quick Reference

# Basic vLLM server
vllm serve meta-llama/Meta-Llama-3.1-70B-Instruct \
    --tensor-parallel-size 4 \
    --max-model-len 8192

# With quantization + speculative decoding
vllm serve meta-llama/Meta-Llama-3.1-70B-Instruct \
    --quantization awq \
    --speculative-config '{"method": "ngram", "num_speculative_tokens": 5}' \
    --tensor-parallel-size 4 \
    --gpu-memory-utilization 0.9

vLLM 0.14.x Key Features

FeatureBenefit
PagedAttentionUp to 24x throughput via efficient KV cache
Continuous BatchingDynamic request batching for max utilization
CUDA GraphsFast model execution with graph capture
Tensor ParallelismScale across multiple GPUs
Prefix CachingReuse KV cache for shared prefixes
AttentionConfigNew API replacing VLLM_ATTENTION_BACKEND env
Semantic RoutervLLM SR v0.1 "Iris" for intelligent LLM routing

Python vLLM Integration

from vllm import LLM, SamplingParams

# Initialize with optimization flags
llm = LLM(
    model="meta-llama/Meta-Llama-3.1-8B-Instruct",
    quantization="awq",
    tensor_parallel_size=2,
    gpu_memory_utilization=0.9,
    enable_prefix_caching=True,
)

# Sampling parameters
sampling_params = SamplingParams(
    temperature=0.7,
    top_p=0.9,
    max_tokens=1024,
)

# Generate
outputs = llm.generate(prompts, sampling_params)
for output in outputs:
    print(output.outputs[0].text)

Quantization Methods

MethodBitsMemory SavingsSpeedQuality
FP1616BaselineBaselineBest
INT8850%+10-20%Very Good
AWQ475%+20-40%Good
GPTQ475%+15-30%Good
FP8850%+30-50%Very Good

When to Use Each:

  • FP16: Maximum quality, sufficient memory
  • INT8/FP8: Balance of quality and efficiency
  • AWQ: Best 4-bit quality, activation-aware
  • GPTQ: Faster quantization, good quality

Speculative Decoding

Accelerate generation by predicting multiple tokens:

# N-gram based (no extra model)
speculative_config = {
    "method": "ngram",
    "num_speculative_tokens": 5,
    "prompt_lookup_max": 5,
    "prompt_lookup_min": 2,
}

# Draft model (higher quality)
speculative_config = {
    "method": "draft_model",
    "draft_model": "meta-llama/Llama-3.2-1B-Instruct",
    "num_speculative_tokens": 3,
}

Expected Gains: 1.5-2.5x throughput for autoregressive tasks.

Key Decisions

DecisionRecommendation
QuantizationAWQ for 4-bit, FP8 for H100/H200
Batch sizeDynamic via continuous batching
GPU memory0.85-0.95 utilization
ParallelismTensor parallel across GPUs
KV cacheEnable prefix caching for shared contexts

Common Mistakes

  • Using GPTQ without calibration data (poor quality)
  • Over-allocating GPU memory (OOM on peak loads)
  • Ignoring warmup requests (cold start latency)
  • Not benchmarking actual workload patterns
  • Mixing quantization with incompatible features

Performance Benchmarking

from vllm import LLM, SamplingParams
import time

def benchmark_throughput(llm, prompts, sampling_params, num_runs=3):
    """Benchmark tokens per second."""
    total_tokens = 0
    total_time = 0

    for _ in range(num_runs):
        start = time.perf_counter()
        outputs = llm.generate(prompts, sampling_params)
        elapsed = time.perf_counter() - start

        tokens = sum(len(o.outputs[0].token_ids) for o in outputs)
        total_tokens += tokens
        total_time += elapsed

    return total_tokens / total_time  # tokens/sec

Advanced Patterns

See references/ for:

  • vLLM Deployment: PagedAttention, batching, production config
  • Quantization Guide: AWQ, GPTQ, INT8, FP8 comparison
  • Speculative Decoding: Draft models, n-gram, throughput tuning
  • Edge Deployment: Mobile, resource-constrained optimization

Related Skills

  • llm-streaming - Streaming token responses
  • function-calling - Tool use with inference
  • ollama-local - Local inference with Ollama
  • prompt-caching - Reduce redundant computation
  • semantic-caching - Cache full responses

Capability Details

vllm-deployment

Keywords: vllm, inference server, deploy, serve, production Solves:

  • Deploy LLMs with vLLM for production
  • Configure tensor parallelism and batching
  • Optimize GPU memory utilization

quantization

Keywords: quantize, AWQ, GPTQ, INT8, FP8, compress, reduce memory Solves:

  • Reduce model memory footprint
  • Choose appropriate quantization method
  • Maintain quality with lower precision

speculative-decoding

Keywords: speculative, draft model, faster generation, predict tokens Solves:

  • Accelerate autoregressive generation
  • Configure draft models or n-gram speculation
  • Tune speculative token count

edge-inference

Keywords: edge, mobile, embedded, constrained, optimization Solves:

  • Deploy on resource-constrained devices
  • Optimize for mobile/edge hardware
  • Balance quality and resource usage

throughput-optimization

Keywords: throughput, latency, performance, benchmark, optimize Solves:

  • Maximize requests per second
  • Reduce time to first token
  • Benchmark and tune performance

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.86%
按下载量换算41

OpenCode

23.47%
按下载量换算34

Antigravity

16.56%
按下载量换算24

Gemini CLI

11.43%
按下载量换算16

windsurf

7.49%
按下载量换算11

trae

3.35%
按下载量换算5

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills