Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

pennylanepennylane 搜索

Agent Skill

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

总安装

279

周安装

12

GitHub Stars

9

下载量

98
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:pennylane(pennylane 搜索)
来源仓库:https://github.com/tondevrel/scientific-agent-skills
仓库路径:skills/pennylane
安装命令:
npx skills add https://github.com/tondevrel/scientific-agent-skills --skill pennylane
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tondevrel/scientific-agent-skills --skill pennylane

简介

pennylane 用于查找、检索和筛选相关信息。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果的任务。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 当前无底部简介内容,可参考来源仓库获取更多使用细节。

SKILL.md

PennyLane - Quantum Machine Learning

PennyLane treats quantum computers like neural network layers. It allows for the calculation of gradients of quantum circuits (using the parameter-shift rule or backpropagation), enabling the optimization of hybrid classical-quantum models.

When to Use

  • Developing and training Quantum Neural Networks (QNNs)
  • Variational Quantum Algorithms (VQE, QAOA)
  • Hybrid classical-quantum machine learning (e.g., Quantum CNNs)
  • Quantum chemistry calculations in a differentiable framework
  • Benchmarking quantum algorithms across different hardware (IBM, Rigetti, Xanadu, IonQ)
  • Optimizing quantum control pulses
  • Investigating Barren Plateaus and other QML-specific phenomena

Reference Documentation

Official docs: https://docs.pennylane.ai/ Demos/Tutorials: https://pennylane.ai/qml/demonstrations.html Search patterns: qml.qnode, qml.device, qml.expval, qml.grad, qml.templates

Core Principles

The QNode (Quantum Node)

A QNode is a quantum circuit bound to a device, which can be called like a standard Python function. It is the fundamental unit that PennyLane can differentiate.

Hardware Agnosticism

PennyLane provides a unified interface. The same code can run on a high-performance simulator (default.qubit), a GPU-accelerated backend (lightning.qubit), or real quantum hardware.

Automatic Differentiation

Quantum circuits in PennyLane are "aware" of their gradients. You can use standard optimizers (Adam, SGD) to tune rotation angles in the circuit.

Quick Reference

Installation

pip install pennylane
# For GPU support
pip install pennylane-lightning[gpu]

Standard Imports

import pennylane as qml
from pennylane import numpy as np # Use PennyLane's wrapped NumPy for gradients

Basic Pattern - Differentiable Circuit

import pennylane as qml
from pennylane import numpy as np

# 1. Define Device
dev = qml.device("default.qubit", wires=2)

# 2. Define QNode (Quantum Node)
@qml.qnode(dev)
def circuit(params):
    qml.RX(params[0], wires=0)
    qml.RY(params[1], wires=1)
    qml.CNOT(wires=[0, 1])
    return qml.expval(qml.PauliZ(1))

# 3. Calculate Gradient
params = np.array([0.1, 0.2], requires_grad=True)
grad_fn = qml.grad(circuit)
print(f"Gradient: {grad_fn(params)}")

Critical Rules

✅ DO

  • Use qml.numpy - Always use the PennyLane-wrapped NumPy for parameters you want to differentiate
  • Use Templates - Instead of building layers manually, use qml.templates (like StronglyEntanglingLayers) for efficient QML architectures
  • Set requires_grad - Explicitly mark trainable parameters with requires_grad=True
  • Prefer lightning.qubit - For simulations with >15 qubits, use the lightning device for significantly better performance
  • Use Broadcasting - Many gates support broadcasting over input arrays, which is faster than loops
  • Batch Circuits - Use qml.batch_input or qml.map for processing multiple inputs simultaneously

❌ DON'T

  • Mix NumPy versions - Using standard import numpy as np for trainable parameters will break the autograd engine
  • Overcomplicate Ansätze - Start with simple circuits to avoid Barren Plateaus (where gradients vanish)
  • Use too many qubits on simulators - Memory scales as 2^N. 30 qubits require ~16GB of RAM for a single statevector
  • Hardcode Wire Indices - Use variables for wires to make your code reusable and scalable

Anti-Patterns (NEVER)

import pennylane as qml
# ❌ BAD: Standard numpy for trainable parameters
import numpy as np

# ✅ GOOD: PennyLane's wrapped numpy
from pennylane import numpy as np

# ❌ BAD: Creating a device inside a loop
for i in range(100):
    dev = qml.device("default.qubit", wires=2) # Expensive initialization

# ✅ GOOD: Define device once
dev = qml.device("default.qubit", wires=2)

# ❌ BAD: Manual parameter shifting
# (shift = 0.5 * pi, calc f(x+s) - f(x-s)...)
# ✅ GOOD: Let PennyLane handle it automatically
grad = qml.grad(circuit)(params)

Circuit Templates (qml.templates)

Built-in QML Layers

import pennylane as qml

@qml.qnode(dev)
def qnn_layer(inputs, weights):
    # Encoding classical data into quantum state
    qml.AngleEmbedding(inputs, wires=range(n_qubits))

    # Trainable entangling layer
    qml.StronglyEntanglingLayers(weights, wires=range(n_qubits))

    return qml.expval(qml.PauliZ(0))

Hybrid Optimization (PyTorch/TF)

Integration with Classical Frameworks

import torch
import pennylane as qml

dev = qml.device("default.qubit", wires=2)

@qml.qnode(dev, interface="torch")
def quantum_layer(phi, theta):
    qml.RX(phi, wires=0)
    qml.RZ(theta, wires=1)
    return qml.expval(qml.PauliZ(0))

# Now this QNode can be used in a Torch Module
phi = torch.tensor(0.1, requires_grad=True)
theta = torch.tensor(0.2, requires_grad=True)
result = quantum_layer(phi, theta)
result.backward()
print(phi.grad)

Quantum Chemistry (qml.qchem)

VQE Workflow

from pennylane import qchem

# 1. Define molecule
symbols = ["H", "H"]
coordinates = np.array([0.0, 0.0, -0.6614, 0.0, 0.0, 0.6614])

# 2. Build Hamiltonian
H, qubits = qchem.molecular_hamiltonian(symbols, coordinates)

# 3. Define VQE circuit
dev = qml.device("default.qubit", wires=qubits)
@qml.qnode(dev)
def vqe_circuit(params):
    # Simple Hartree-Fock state + rotations
    qml.BasisState(np.array([1, 1, 0, 0]), wires=range(qubits))
    qml.DoubleExcitation(params[0], wires=[0, 1, 2, 3])
    return qml.expval(H)

Measurements and Observables

Beyond Expectation Values

@qml.qnode(dev)
def multi_measure(params):
    qml.RX(params[0], wires=0)
    return (
        qml.expval(qml.PauliZ(0)), # Expectation value
        qml.var(qml.PauliZ(0)),    # Variance
        qml.probs(wires=[0, 1]),   # Probabilities
        qml.sample(qml.PauliX(1))  # Raw samples (shots)
    )

Practical Workflows

1. Quantum Variational Classifier

def variational_classifier(weights, bias, x):
    """A simple QNN classifier."""
    return circuit(weights, x) + bias

def cost(weights, bias, X, Y):
    predictions = [variational_classifier(weights, bias, x) for x in X]
    return square_loss(Y, predictions)

# Optimizer
opt = qml.AdamOptimizer(stepsize=0.1)
# ... loop with opt.step(cost, ...)

2. Computing Gradients on Hardware (Parameter-Shift)

# When running on real hardware, PennyLane automatically uses
# the parameter-shift rule to calculate gradients via multiple executions.
dev_remote = qml.device("braket.aws.qubit", device_arn="...", wires=2)

@qml.qnode(dev_remote, diff_method="parameter-shift")
def hardware_circuit(params):
    qml.RY(params[0], wires=0)
    return qml.expval(qml.PauliZ(0))

3. Noise Simulation

dev_noisy = qml.device("default.mixed", wires=2)

@qml.qnode(dev_noisy)
def noisy_circuit(p):
    qml.Hadamard(wires=0)
    # Apply depolarizing noise to wire 0
    qml.DepolarizingChannel(p, wires=0)
    return qml.state()

Performance Optimization

JAX Integration for Speed

JAX is often the fastest interface for large-scale simulations due to its Just-In-Time (JIT) compilation.

import jax

@qml.qnode(dev, interface="jax")
def fast_circuit(x):
    qml.RX(x, wires=0)
    return qml.expval(qml.PauliZ(0))

jit_circuit = jax.jit(fast_circuit)

Adjoint Differentiation

For large circuits, diff_method="adjoint" is much more memory-efficient than backpropagation.

dev = qml.device("lightning.qubit", wires=20)
@qml.qnode(dev, diff_method="adjoint")
def large_circuit(params):
    ...

Common Pitfalls and Solutions

The "Vanishing Gradient" (Barren Plateaus)

As the number of qubits and layers increases, the gradient often becomes exponentially small.

# ✅ Solution:
# 1. Use better initialization for weights.
# 2. Use local observables (PauliZ(i)) instead of global ones.
# 3. Use identity-block initialization.

Non-Trainable Inputs

Sometimes you want to pass data (like images) that shouldn't be optimized.

# ✅ Solution: Use the 'argnum' in qml.grad or use non-array types
# Or explicitly:
params = np.array(0.1, requires_grad=True)
data = np.array(0.5, requires_grad=False)

Output Shape Mismatch

qml.probs returns an array of size 2^N.

# ❌ Problem: Using probs(wires=[0,1,2]) in a loss function expecting a scalar.
# ✅ Solution: Use expval() for a single scalar or handle the distribution.

PennyLane bridges the gap between quantum physics and artificial intelligence. By making quantum circuits differentiable, it transforms them into powerful, trainable tools for the next generation of scientific computing.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

展示第三方安全扫描或审计结果

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

平台分布

Codex

36.99%
按下载量换算36

Claude

29.7%
按下载量换算29

Cursor

19.84%
按下载量换算19

Gemini CLI

10.45%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills