{% extends "base.html" %}
{% block title %}Search - devqubit{% endblock %}
{% block content %}
{# Results will be loaded here via HTMX #}
| Field |
Description |
| params.X | Parameter value |
| metric.X | Metric value |
| tags.X | Tag value |
| status | Run status |
| project | Project name |
| backend | Backend name |
| Operator |
Description |
| = | Equals |
| != | Not equals |
| > | Greater than |
| >= | Greater or equal |
| < | Less than |
| <= | Less or equal |
| ~ | Contains |
| and | Combine conditions |
| metric.fidelity > 0.95 |
High fidelity runs |
| params.shots = 1000 and status = FINISHED |
Finished runs with 1000 shots |
| tags.backend ~ ibm |
Runs with IBM backends |
| metric.error < 0.01 |
Low error runs |
| project = vqe and metric.energy < -2.0 |
VQE runs with low energy |
{% endblock %}