{% extends "base.html" %} {% block title %}Search - devqubit{% endblock %} {% block content %}
{% if current_workspace %} {% endif %}
Searching...

Query Syntax

Field Description
params.XParameter value
metric.XMetric value
tags.XTag value
statusRun status
projectProject name
backendBackend name

Operators

Operator Description
=Equals
!=Not equals
>Greater than
>=Greater or equal
<Less than
<=Less or equal
~Contains
andCombine conditions

Examples

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 %}