Skip to content
Snippets Groups Projects
Commit 0c7a0da5 authored by Niel de Beaudrap's avatar Niel de Beaudrap
Browse files

Revised S1.3.1, deliberately revised AZX macro again to make it annoying to...

Revised S1.3.1, deliberately revised AZX macro again to make it annoying to show where the narrative still needs to be revised
parent d94c273a
No related branches found
No related tags found
No related merge requests found
...@@ -619,29 +619,28 @@ various themes: the relation between \zx and other quantum computing representat ...@@ -619,29 +619,28 @@ various themes: the relation between \zx and other quantum computing representat
\subsubsection{A quantum compiler stack} \subsubsection{A quantum compiler stack}
\label{sec:progr-lang-supp} \label{sec:progr-lang-supp}
In the quantum setting, several powerful high-level languages \newt{%
(HLLs) such as Quipper~\cite{Alexander-S.-Green:2013fk} and Q\# Several powerful high-level languages (HLLs) have been proposed for quantum programs, such as Quipper~\cite{Alexander-S.-Green:2013fk} and \Qsharp~\cite{qsharp}.
\cite{qsharp} have been proposed. As in the case of their }%
classical counterparts, these HLLs are not designed to be run directly \newt{%
on quantum hardware, rather their compilers typically output quantum As with classical HLLs, these languages are not designed to be run directly on quantum hardware: instead, their compilers typically output quantum circuit descriptions, which are not tailored well to run on any particular hardware platform.
circuit descriptions. Rather than designing a new programming language, we propose a compiler system for quantum computers, which could serve as an interface between multiple different HLLs for quantum procedures, and various quantum hardware platforms.
Rather than designing a new programming language, we propose a quantum This system would use the \zxcalculus as an internal representation of the procedure as it undergoes optimisations and translations to fit a particular hardware architecture.
IR, \azx. Unlike the languages mentioned above, \azx is not intended This representation would not be required from or exposed to the user,\footnote{This said, the \zxcalculus has proved a very useful notation for mathematical proofs.}
to be written by humans\footnote{This said, the \zxcalculus has proved but would be generated by a compiler front-end from programs written in existing high-level languages.
a very useful notation for mathematical proofs.}, instead it will be Therefore it is essential to provide a robust, general framework for compilation of HLLs to \zx terms.
generated by a compiler front-end from programs written in existing }%
high-level languages. Therefore it is essential to provide a robust,
general framework for compilation of HLLs to \azx. \newt{%
As most existing quantum HLLs can output circuit descriptions, and as circuits can easily be represented in the \zxcalculus,
Since most existing quantum HLLs can output circuit descriptions, and }%
since circuits can easily be represented in the \zxcalculus, we first we first focus on a simple front end for the circuit language QASM~\cite{Cross2017Open-Quantum-As} in \ref{task:HHL} before moving towards more expressive HHLs.
focus on a simple front end for the circuit language \newt{%
QASM~\cite{Cross2017Open-Quantum-As} in \ref{task:HHL} before moving This will allow virtually any extant quantum HLL to interface with our quantum compiler system, albeit rather naively at first.
towards more expressive HHLs. This }%
will allow \azx terms to be produced from virtually any extant quantum Later, we will perform concrete front-end
HLL, albeit rather naively. Later, we will perform concrete front-end
experiments using more sophisticated existing HLLs in, for example experiments using more sophisticated existing HLLs in, for example
\emph{Quipper}, Q\#~\cite{qsharp}, or ProjectQ \emph{Quipper}, \Qsharp~\cite{qsharp}, or ProjectQ
\cite{Steiger2016ProjectQ:-An-Op}, with the help of \cite{Steiger2016ProjectQ:-An-Op}, with the help of
Task~\ref{task:betterboxes}. Task~\ref{task:betterboxes}.
...@@ -649,18 +648,10 @@ The open database of tests developed in \ref{task:testBench} will ...@@ -649,18 +648,10 @@ The open database of tests developed in \ref{task:testBench} will
serve as a measuring tool for the quality of the output. The database serve as a measuring tool for the quality of the output. The database
will also be made available to the community for rating and testing will also be made available to the community for rating and testing
future compilers or optimisation techniques. To encourage interaction future compilers or optimisation techniques. To encourage interaction
from other research groups, and to support other languages, both our from other research groups, and to support other languages,
interface and the \azx language will be made public. \newt{%
the interfaces and functionality for our quantum compiler system will be made public.
%% OUTDATED }%
% This work package consists of a back-and-forth interaction between
% HLLs and \azx, which is why many of its tasks span the entire lifetime
% of the project. HLL development influences \azx by providing the
% control structures and other constructs that must be represented at
% \azx level. Conversely, \azx developments will influence HLL, as we
% analyse how information and requirements from the back-end flow upward
% in a meaningful way, and how this can be translated into compilation
% flags and assertions/hints to the compiler within HLL programs.
Proposed and existing quantum devices differ along a variety of axes. Proposed and existing quantum devices differ along a variety of axes.
At the most abstract level, the quantum circuit model and the At the most abstract level, the quantum circuit model and the
...@@ -674,23 +665,29 @@ Primitive operations will require different amounts of time, ...@@ -674,23 +665,29 @@ Primitive operations will require different amounts of time,
different qubit implementations have different failure different qubit implementations have different failure
modes.\REM{noise,fidelitY} modes.\REM{noise,fidelitY}
Due to the novelty of our proposal, we adopt an exploratory approach Due to the novelty of our proposal, we adopt an exploratory approach with respect to back-end models.
with respect to back-end models. Initially, and in parallel, we study the circuit model (\ref{task:circuit-model}) and
Initially, and the 1-way model (\ref{task:mbqc-model}) because these models are well understood, stable, and have been extensively treated in the \zxcalculus literature.
in parallel, we study the circuit model (\ref{task:circuit-model}) and \newt{%
the 1-way model (\ref{task:mbqc-model}) because these models are well These models will provide the prototypes for the use of annotations on top of \zx terms which will be used by our compiler system.
understood, stable, and have been extensively treated in the In both cases, this involves three tightly related tasks:
\zxcalculus literature. We will use these examples to develop \begin{enumerate}[label=(\roman*)]
prototypical \azx constructs expressing the relevant properties. This \item
consists in three tightly related tasks: decomposing the tensor decomposing the tensor network into atomic operations;
network into atomic operations; characterising runnability with \item
respect to the model by predicates in monadic second order logic; and characterising runnability in the model, by predicates in monadic second order logic; and
transforming the tensor network into an equivalent runnable version. \item
transforming the tensor network into an equivalent runnable version.
\end{enumerate}
}
This experience will inform the later work in \ref{wp:theory} and This experience will inform the later work in \ref{wp:theory} and
\ref{wp:usefulstuff}. \ref{wp:usefulstuff}.
Although we will provide specific modules for the tasks described above, the Although we will provide specific modules for the tasks described above,
\azx system is intended to extensible, so we will also publish an open \newt{%
our quantum compiler system
}%
is intended to extensible, so we will also publish an open
API and specification language to simplify the task of adding new API and specification language to simplify the task of adding new
architectures and error correcting schemes to the system architectures and error correcting schemes to the system
(\ref{task:backendapi}). (\ref{task:backendapi}).
...@@ -1134,7 +1131,7 @@ users for the final products. The board comprises: ...@@ -1134,7 +1131,7 @@ users for the final products. The board comprises:
\item Andreas Wallraff (ETH Z\"urich), \item Andreas Wallraff (ETH Z\"urich),
\item Philip Walther (Vienna), \item Philip Walther (Vienna),
\item \bR Will Zeng (Rigetti Quantum Computing) --- may be fired soon\e. \item \bR Will Zeng (Rigetti Quantum Computing) --- may be fired soon\e.
\item \bR Morre suggestions: Winfried Hensinger, Mike Mosca, Martin Roetteler\e. \item \bR More suggestions: Winfried Hensinger, Mike Mosca, Martin Roetteler, Michael Beverland\e.
\end{itemize} \end{itemize}
Letters of support from the board members are attached at the end of Letters of support from the board members are attached at the end of
this document.} this document.}
...@@ -1309,7 +1306,7 @@ In the first instance we make contact between \zx and standard circuit and measu ...@@ -1309,7 +1306,7 @@ In the first instance we make contact between \zx and standard circuit and measu
\WPtask[\label{task:HHL}]{Front-end (M3--M36; responsible 3; \WPtask[\label{task:HHL}]{Front-end (M3--M36; responsible 3;
involved 2,4,5) }{% involved 2,4,5) }{%
Propose compiler front-end from known HLLs such as QASM, Quipper Propose compiler front-end from known HLLs such as QASM, Quipper
or Q\# to \azx. This task serves as a test-bed or \Qsharp to \azx. This task serves as a test-bed
for~\ref{task:testBench} and~\ref{task:trans1}. for~\ref{task:testBench} and~\ref{task:trans1}.
% %
} }
......
...@@ -274,8 +274,9 @@ ...@@ -274,8 +274,9 @@
\newcommand{\zx}{\textsc{zx}\xspace} \newcommand{\zx}{\textsc{zx}\xspace}
\newcommand{\zxcalculus}{\textsc{zx}-calculus\xspace} \newcommand{\zxcalculus}{\textsc{zx}-calculus\xspace}
\newcommand{\azx}{\texttt{\bfseries\color{red!70!black}AZX}\xspace} \newcommand{\azx}{\texttt{\bfseries\color{red!70!black}[macro \textbackslash AZX occurs here]}\xspace}
\newcommand{\liquid}{\texttt{\bfseries\color{red!70!black}Q\#}\xspace} \newcommand{\liquid}{\texttt{\bfseries\color{red!70!black}[do you mean \textbackslash Qsharp?]}\xspace}
\newcommand{\Qsharp}{Q\texttt\#\xspace}
\newcommand{\benREM}[1]{\texttt{\bfseries\color{red!70!black} [{#1}]}\xspace} \newcommand{\benREM}[1]{\texttt{\bfseries\color{red!70!black} [{#1}]}\xspace}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment