Metadata-Version: 2.1
Name: iqm-cortex-cli
Version: 1.6
Summary: CLI for executing quantum circuits
Home-page: https://github.com/iqm-finland/cortex-cli
Author: IQM Finland Oy
Author-email: developers@meetiqm.com
License: Apache 2.0
Project-URL: Documentation, https://iqm-finland.github.io/iqm-cortex-cli
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: ~=3.9
Description-Content-Type: text/x-rst; charset=UTF-8
License-File: LICENSE.rst
License-File: AUTHORS.rst
Requires-Dist: click (>=7.1.2)
Requires-Dist: python-daemon (>=2.3.0)
Requires-Dist: psutil (>=5.9.2)
Requires-Dist: jsonschema (>=4.6.0)
Requires-Dist: requests (>=2.26.0)
Requires-Dist: pydantic (<2.0,>=1.8.2)
Requires-Dist: pydantic (>=1.10.2)
Provides-Extra: cicd
Requires-Dist: twine (~=4.0) ; extra == 'cicd'
Provides-Extra: circuit
Requires-Dist: cirq-iqm (<8.0,>=7.6) ; extra == 'circuit'
Requires-Dist: iqm-client (<9.0,>=8.1) ; extra == 'circuit'
Provides-Extra: dev
Requires-Dist: tox (==3.25.1) ; extra == 'dev'
Provides-Extra: docs
Requires-Dist: sphinx (==4.5.0) ; extra == 'docs'
Requires-Dist: sphinx-book-theme (==0.3.3) ; extra == 'docs'
Provides-Extra: testing
Requires-Dist: black (==22.10.0) ; extra == 'testing'
Requires-Dist: isort (==5.10.1) ; extra == 'testing'
Requires-Dist: mypy (==0.971) ; extra == 'testing'
Requires-Dist: pytest (==7.1.2) ; extra == 'testing'
Requires-Dist: pytest-cov (==3.0.0) ; extra == 'testing'
Requires-Dist: pytest-isort (==3.0.0) ; extra == 'testing'
Requires-Dist: pytest-mypy (==0.9.1) ; extra == 'testing'
Requires-Dist: pytest-pylint (==0.18.0) ; extra == 'testing'
Requires-Dist: mockito (==1.2.2) ; extra == 'testing'
Requires-Dist: types-requests (==2.28.9) ; extra == 'testing'

|CI badge| |Release badge| |Black badge|

.. |CI badge| image:: https://github.com/iqm-finland/cortex-cli/actions/workflows/ci.yml/badge.svg
.. |Release badge| image:: https://img.shields.io/github/release/iqm-finland/cortex-cli.svg
.. |Black badge| image:: https://img.shields.io/badge/code%20style-black-000000.svg
    :target: https://github.com/psf/black

==========
Cortex CLI
==========

Command-line interface (CLI) for interacting with an IQM quantum computer.

Installing Cortex CLI
---------------------

Requirements for installing:

- Python 3.9
- `pip <https://pypi.org/project/pip/>`_

.. code-block:: bash

  $ pip install iqm-cortex-cli

Using Cortex CLI
----------------

For general usage instructions, run

.. code-block:: bash

  $ cortex --help

Initialization
^^^^^^^^^^^^^^

First, Cortex CLI needs initialization, which produces a configuration file:

.. code-block:: bash

  $ cortex init

Cortex CLI will ask a few questions. You can also pass the values via command line to avoid having an interactive
prompt. See ``cortex init --help`` for details.

Login
^^^^^

To log in, use

.. code-block:: bash

  $ cortex auth login

This will ask you to enter your username and password.

After a successful authentication, tokens will be saved into a tokens file (path specified in the configuration file),
and a token manager daemon will start in the background. Token manager will periodically refresh the session and
re-write the tokens file.

To use the token manager in a foreground mode (not as daemon), run ``cortex auth login --no-daemon``. This requires
keeping the shell session alive. However, you can start the process in the background by adding ``&`` after the
command: ``cortex auth login --no-daemon &``. This applies to Bash, zsh and similar shells, but may not be available
on all shells.

To login and get tokens once, without starting a token manager at all, run ``cortex auth login --no-refresh``.

If the tokens file already exists, then running ``cortex auth login`` will first attempt to refresh the session without
asking you for a username and password. If that fails (because existing tokens may already have expired), you'll be
asked to re-enter your credentials.

See ``cortex auth login --help`` for more details.

Use with Cirq on IQM, Qiskit on IQM, etc.
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Adapters based on IQM Client, such as Cirq on IQM and Qiskit on IQM, can take advantage of the tokens file maintained by
Cortex CLI. This way you won't need to provide the authentication server URL, username, or password to the adapter
library itself. To achieve this, follow the instructions printed on the screen after running ``cortex auth login``.
Namely, set the ``IQM_TOKENS_FILE`` environment variable to point to your tokens file, for example:

.. code-block:: bash

  $ export IQM_TOKENS_FILE=/home/user/iqm_tokens.json

Once set, this environment variable is read by the instance of IQM Client associated with the adapter. As a result,
from the point of view of the adapter it looks like authentication is simply not required (i.e. no
authentication-related information has to be provided to the adapter).

Status
^^^^^^

To see the current status of the token manager, use:

.. code-block:: bash

  $ cortex auth status

If the tokens file exists, ``cortex auth status`` will report whether the corresponding token
manager is running. It will also print the time of the last successful refresh request, and
how much time is left until current tokens expire.

See ``cortex auth status --help`` for more details.

Logout
^^^^^^

To log out, run

.. code-block:: bash

  $ cortex auth logout

This will send a logout request to the authentication server, kill the token manager daemon (if any), and delete the
tokens file.

You may want to stop the token manager, but maintain the session on the server and keep the tokens file intact.
To do so, run:

.. code-block:: bash

  $ cortex auth logout --keep-tokens

See ``cortex auth logout --help`` for more details.

Multiple configuration files
^^^^^^^^^^^^^^^^^^^^^^^^^^^^

By default, all Cortex CLI commands read the configuration file from the default location
``~/.config/iqm-cortex-cli/config.json``. You can specify a different filepath by providing the ``--config-file`` value,
for example:

.. code-block:: bash

  $ cortex auth status --config-file /home/joe/config.json
  $ cortex auth login --config-file /home/joe/config.json
  $ cortex auth logout --config-file /home/joe/config.json


Using Cortex CLI for circuits
-----------------------------

Circuit-related commands require additional dependencies to be installed. To install them, run

.. code-block:: bash

  $ pip install "iqm-cortex-cli[circuit]"

Circuit validation
^^^^^^^^^^^^^^^^^^

.. code-block:: bash

  $ cortex circuit validate my_circuit.qasm

validates the quantum circuit in file ``my_circuit.qasm``, and reports errors if the circuit is not
valid OpenQASM 2.0. The exit code is 0 if and only if the circuit is valid.

Executing circuits on a quantum computer
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

You can execute a quantum circuit on an IQM quantum computer with

.. code-block:: bash

  $ export IQM_SERVER_URL="https://example.com/iqm-server"
  $ cortex circuit run --shots 100 --qubit-mapping my_qubit_mapping.json my_circuit.qasm

The server URL can be set either with command-line option or as an environment variable.

By default, authentication is handled the same way as with other Cortex CLI commands. You can
override this and provide your own server URL, username, and password by setting environment
variables IQM_AUTH_SERVER, IQM_AUTH_USERNAME and IQM_AUTH_PASSWORD.

Note that the circuit needs to be transpiled so that it only contains operations natively supported by the IQM quantum
computer you are using.

For information on all the parameters and their usage, run

.. code-block:: bash

  $ cortex circuit run --help


The results of the measurements in the circuit are returned in JSON format:

.. code-block:: json

  {"measurement_0":
    [
      [1, 0, 1, 1],
      [1, 0, 0, 1],
      [1, 0, 1, 1]
    ]
  }

The dictionary keys are measurement keys from the circuit. The value for each measurement is a 2-D array of binary
integers. The first index goes over the shots, and the second over the qubits in the measurement. For example, in the
example above, "measurement_0" is a 4-qubit measurement, and the number of shots is three.
