Skip to content

Commit 0f555c8

Browse files
Merge branch 'dev' of https://github.com/ColibrITD-SAS/mpqp into dev
2 parents f268cfb + 37310dd commit 0f555c8

File tree

6 files changed

+10
-45
lines changed

6 files changed

+10
-45
lines changed

docs/getting-started.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ QLMaaS / Qaptiva
6868
QLM proposes several ways of setting up the account to submit jobs on their
6969
simulators. We made the choice to use the ``username`` and ``password``
7070
credentials to identify yourself on the QLM. When configuring the connection
71-
with ``setup_connections`` script, we ask you to choose the between configuring
71+
with ``setup_connections`` script, we ask you to choose between configuring
7272
the account only in the scope of MPQP, or for your whole environment.
7373

7474
AWS Braket
@@ -85,6 +85,6 @@ Execute examples
8585

8686
.. code-block:: console
8787
88-
$ python -m example.bell_pair
89-
$ python -m example.demonstration
90-
$ python -m example.observable_job
88+
$ python -m example.scripts.bell_pair
89+
$ python -m example.scripts.demonstration
90+
$ python -m example.scripts.observable_job

example/notebooks/Notebook_6__From_OpenQASM_2_to_3.ipynb

-35
This file was deleted.

mpqp/execution/providers_execution/ibm_execution.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
@typechecked
4343
def run_ibm(job: Job) -> Result:
4444
"""
45-
Execute the job on the right IBM Q device precised in the job in parameter.
45+
Executes the job on the right IBM Q device precised in the job in parameter.
4646
This function is not meant to be used directly, please use ``runner.run(...)`` instead.
4747
4848
Args:
@@ -405,7 +405,7 @@ def extract_result(
405405
@typechecked
406406
def get_result_from_ibm_job_id(job_id: str) -> Result:
407407
"""
408-
Retrieve from IBM remote platform and parse the result of the job_id given in parameter.
408+
Retrieves from IBM remote platform and parse the result of the job_id given in parameter.
409409
If the job is still running, we wait (blocking) until it is DONE.
410410
411411
Args:

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ build-backend = "setuptools.build_meta"
44

55

66
[tool.setuptools_scm]
7-
version_scheme = "guess-next-dev"
7+
version_scheme = "post-release"
88
local_scheme = "no-local-version"

tests/core/test_circuit/all.qasm3

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
OPENQASM 3.0;
2-
include 'stdgates.inc';
2+
include "stdgates.inc";
33

44
qubit[2] q;
55
bit[2] c;

tests/core/test_circuit/lot_of_gates.qasm3

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
OPENQASM 3.0;
2-
include 'stdgates.inc';
2+
include "stdgates.inc";
33

44
qubit[4] q;
55
bit[4] c;
@@ -21,4 +21,4 @@ rz(3.14) q[0];
2121
c[0] = measure q[0];
2222
c[1] = measure q[1];
2323
c[2] = measure q[2];
24-
c[3] = measure q[3];
24+
c[3] = measure q[3];

0 commit comments

Comments
 (0)