Source code for pennylane.capture.switches
# Copyright 2024 Xanadu Quantum Technologies Inc.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
Contains the switches to (de)activate the capturing mechanism, and a
status reporting function on whether it is enabled or not.
"""
from collections.abc import Callable
from contextlib import contextmanager
has_jax = True
try:
import jax # pylint: disable=unused-import
except ImportError:
has_jax = False
def _make_switches() -> tuple[Callable[[], None], Callable[[], None], Callable[[], bool]]:
r"""Create three functions, corresponding to an activation switch, a deactivation switch
and a status query, in that order.
.. note::
While the internal variable is named in some context, this function
can be used to make switches for any context.
"""
_FEATURE_ENABLED = False
# since this changes what happens with tracing, we need to turn the behaviour
# off by default to preserve our ability to jit pennylane circuits.
def enable_fn() -> None:
"""Enable the capturing mechanism of hybrid quantum-classical programs
in a PennyLane Program Representation (plxpr)."""
if not has_jax:
raise ImportError("plxpr requires JAX to be installed.")
nonlocal _FEATURE_ENABLED
_FEATURE_ENABLED = True
def disable_fn() -> None:
"""Disable the capturing mechanism of hybrid quantum-classical programs
in a PennyLane Program Representation (plxpr)."""
nonlocal _FEATURE_ENABLED
_FEATURE_ENABLED = False
def status_fn() -> bool:
"""Return whether the capturing mechanism of hybrid quantum-classical programs
in a PennyLane Program Representation (plxpr) is enabled."""
nonlocal _FEATURE_ENABLED
return _FEATURE_ENABLED
return enable_fn, disable_fn, status_fn
enable, disable, enabled = _make_switches()
[docs]@contextmanager
def pause():
"""Temporarily stop program capture.
>>> def f():
... with qml.capture.pause():
... qml.X(0)
... return 2
>>> jax.make_jaxpr(f)()
{ lambda ; . let in (2,) }
"""
disable()
try:
yield
finally:
enable()
_modules/pennylane/capture/switches
Download Python script
Download Notebook
View on GitHub