File size: 684 Bytes
9f8cf99 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | """Accelerator interfaces for optional runtime backends."""
from .base import AccelerationMetadata, AcceleratorResult, NoiseAccelerator
from .qhybrid_backend import (
apply_kraus_1q,
apply_kraus_1q_with_metadata,
apply_pauli_channel,
apply_pauli_channel_with_metadata,
get_backend,
get_backend_metadata,
is_accelerated,
probe_capability,
)
__all__ = [
"AccelerationMetadata",
"AcceleratorResult",
"NoiseAccelerator",
"apply_kraus_1q",
"apply_kraus_1q_with_metadata",
"apply_pauli_channel",
"apply_pauli_channel_with_metadata",
"get_backend",
"get_backend_metadata",
"is_accelerated",
"probe_capability",
]
|