Enabling the Verification and Formalization of Hybrid Quantum-Classical Computing with OpenQASM 3.0 compatible QASM-TS 2.0

Enabling the Verification and Formalization of Hybrid Quantum-Classical Computing with OpenQASM 3.0 compatible QASM-TS 2.0 - Published in JOSS (2025)

https://github.com/comp-phys-marc/qasm-ts

Science Score: 100.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 9 DOI reference(s) in README and JOSS metadata
  • Academic publication links
    Links to: arxiv.org, joss.theoj.org
  • Committers with academic emails
    1 of 6 committers (16.7%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
    Published in Journal of Open Source Software

Keywords from Contributors

pde galaxies gravitational-lensing
Last synced: 5 months ago · JSON representation ·

Repository

QASM, the low-level programming language for quantum circuit specification, implemented in TypeScript.

Basic Info
  • Host: GitHub
  • Owner: comp-phys-marc
  • License: apache-2.0
  • Language: TypeScript
  • Default Branch: master
  • Size: 913 KB
Statistics
  • Stars: 4
  • Watchers: 1
  • Forks: 1
  • Open Issues: 1
  • Releases: 1
Created about 4 years ago · Last pushed 5 months ago
Metadata Files
Readme Contributing License Citation

readme.md

QASM TypeScript

NPM Downloads DOI

OpenQASM, the low-level programming language for quantum circuit specification, implemented in TypeScript.

QASM-TS 2.0 is an implementation of a compiler frontend for OpenQASM 2.0 and 3.0. It includes a lexer and a parser of the OpenQASM language. The source is parsed into an Intermediate Representation (IR): an Abstract Syntax Tree (AST) that captures program structure including control flow and data flow.

The package is aimed at enabling implementations of verification and validation software (such as semantic and static analyzers), compilers and more. These tools may be instrumental in the formalization of hybrid quantum-classical computing.

Language documentation is provided by IBM here.

New in Version 2.1.0

This release includes several improvements made during the review of the repo by reviewers from the Journal of Open Source Software. These improvements include:

  • more examples in documentation
  • easier navigation in the documentation
  • files like CONTRIBUTING and LICENSE
  • fix for the compatibility of the test suite with Windows
  • documentation on how to run our benchmarks
  • improvements to the README
  • etc.

Usage

Import the parse function or parseString function from the package.

ts import { parseFile, parseString } from 'qasm-ts';

parseFile can be called with a String file path to a .qasm file. It will parse the file and return the abstract syntax tree representation. parseFile can also take 3 optional parameters: 1. version: A number, OpenQASMVersion, or OpenQASMMajorVersion. Specifies whether to use the Qasm 2 or 3 lexer/parser (defaults to version 3). 2. verbose: A Boolean. Whether to return verbose objects that includes an extra key for each node's class name (defaults to false). 3. stringify: A Boolean. Whether to stringify and format the return object (defaults to false).

ts let ast = parseFile("<file-path>");

parseString should be called with a String of QASM code. It will parse the code and return the abstract syntax tree representation. parseString also takes the same optional arguments as parseFile.

ts let ast = parseString("<qasm-string>");

The return type for both parseFile and parseString is Array<AstNode>, unless the stringify parameter is true, in which case the return is a String.

The parser is able to recognize and handle 19 distinct types of syntax errors, which are defined and exported in errors.ts. While this is not an advanced semantic or static analysis, it should enable users to basically validate their OpenQASM 2.0 or 3.0 code.

Comprehensive API docs can be found in the docs/ directory, and the docs are hosted online here.

Example I/O

Input: alignment.qasm (source)

``` include "stdgates.inc";

stretch g;

qubit[3] q; barrier q; cx q[0], q[1]; delay[g] q[2]; U(pi/4, 0, pi/2) q[2]; delay[2*g] q[2]; barrier q;

```

Output: Abstract Syntax Tree

[ Include { filename: '"stdgates.inc"' }, ClassicalDeclaration { classicalType: StretchType {}, identifier: Identifier { name: 'g' }, initializer: null, isConst: false }, QuantumDeclaration { identifier: Identifier { name: 'q' }, size: IntegerLiteral { value: 3 } }, QuantumBarrier { qubits: [ [Identifier] ] }, QuantumGateCall { quantumGateName: Identifier { name: 'cx' }, qubits: [ [SubscriptedIdentifier], [SubscriptedIdentifier] ], parameters: null, modifiers: [] }, QuantumDelay { duration: Identifier { name: 'g' }, qubits: [ [SubscriptedIdentifier] ] }, QuantumGateCall { quantumGateName: Identifier { name: 'U' }, qubits: [ [SubscriptedIdentifier] ], parameters: Parameters { args: [Array] }, modifiers: [] }, QuantumDelay { duration: Arithmetic { op: '*', left: [IntegerLiteral], right: [Identifier] }, qubits: [ [SubscriptedIdentifier] ] }, QuantumBarrier { qubits: [ [Identifier] ] } ]

To reproduce this output, you could run the following script in the directory where alignment.qasm is located.

``` import { parseFile } from 'qasm-ts';

const ast = parseFile("./alignment.qasm", 3);

console.log(ast); ```

To run TypeScript files, you can use any number of compilers, but we recommend ts-node. For more information on ts-node, refer to the docs.

ts-node script.ts

Source code

Feel free to clone, fork, comment or contribute on GitHub!

Contributing

To get started contributing to QASM-TS, please see the open issues for a place to start. Alternatively, you are welcome to create any issues which you feel may capture changes, improvements or additions to the package that would be useful. These may be bug reports or enhancement requests. These will be reviewed in a timely manner by a maintainer. If you are able to implement any desired functionality or bug fixes yourself, we also welcome and promise to review any pull requests. Please simply fork the repository and create a branch in your fork with the changes in question. When you create your pull request, make sure to target our repo.

Transpiling

tsc src/*.ts --outDir dist

Installing dependencies

npm install

Run Unit Tests, Conformance Tests

npm test

Run benchmarks

To run benchmarks that compare this package's performance against pre-existing ANTLR and Rust based parsers, see the benchmarking repo and its instructions.

References

The original OpenQASM authors:

  • Andrew W. Cross, Lev S. Bishop, John A. Smolin, Jay M. Gambetta "Open Quantum Assembly Language" arXiv:1707.03429.
  • Andrew W. Cross, Ali Javadi-Abhari, Thomas Alexander, Niel de Beaudrap, Lev S. Bishop, Steven Heidel, Colm A. Ryan, Prasahnt Sivarajah, John Smolin, Jay M. Gambetta, Blake R. Johnson "OpenQASM 3: A broader and deeper quantum assembly language" arXiv:2104.14722

Another strongly typed implementation from which this project took some inspiration:

License

Copyright 2019 Marcus Edwards

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.

How to Cite

If you are using QASM-TS for research we appreciate any citations. Please read and cite our paper published with the Journal of Open Source Software.

``` @article{Kim[2025, doi = {10.21105/joss.08696}, url = {https://doi.org/10.21105/joss.08696}, year = {2025}, publisher = {The Open Journal}, volume = {10}, number = {113}, pages = {8696}, author = {Kim[, Sean and Edwards[, Marcus}, title = {Enabling the Verification and Formalization of Hybrid Quantum-Classical Computing with OpenQASM 3.0 compatible QASM-TS 2.0}, journal = {Journal of Open Source Software} }

```

Owner

  • Name: Marcus Edwards
  • Login: comp-phys-marc
  • Kind: user
  • Location: Vancouver, British Columbia, Canada

Quantum Physicist. Software Engineer. MSc - Quantum Information Science @ University of Waterloo. BSc - CS and Physics @ Wilfrid Laurier University.

JOSS Publication

Enabling the Verification and Formalization of Hybrid Quantum-Classical Computing with OpenQASM 3.0 compatible QASM-TS 2.0
Published
September 17, 2025
Volume 10, Issue 113, Page 8696
Authors
Sean Kim[ ORCID
George Washington University, United States of America
Marcus Edwards[ ORCID
University of British Columbia, Canada
Editor
Daniel S. Katz ORCID
Tags
Quantum computing Compiling

Citation (CITATION.cff)

cff-version: "1.2.0"
authors:
- family-names: Kim
  given-names: Sean
  orcid: "https://orcid.org/0009-0006-1223-1895"
- family-names: Edwards
  given-names: Marcus
  orcid: "https://orcid.org/0000-0001-6591-9585"
doi: 10.5281/zenodo.17144767
message: If you use this software, please cite our article in the
  Journal of Open Source Software.
preferred-citation:
  authors:
  - family-names: Kim
    given-names: Sean
    orcid: "https://orcid.org/0009-0006-1223-1895"
  - family-names: Edwards
    given-names: Marcus
    orcid: "https://orcid.org/0000-0001-6591-9585"
  date-published: 2025-09-17
  doi: 10.21105/joss.08696
  issn: 2475-9066
  issue: 113
  journal: Journal of Open Source Software
  publisher:
    name: Open Journals
  start: 8696
  title: Enabling the Verification and Formalization of Hybrid
    Quantum-Classical Computing with OpenQASM 3.0 compatible QASM-TS 2.0
  type: article
  url: "https://joss.theoj.org/papers/10.21105/joss.08696"
  volume: 10
title: Enabling the Verification and Formalization of Hybrid
  Quantum-Classical Computing with OpenQASM 3.0 compatible QASM-TS 2.0

GitHub Events

Total
  • Issues event: 8
  • Watch event: 1
  • Delete event: 2
  • Issue comment event: 23
  • Push event: 62
  • Pull request review comment event: 5
  • Pull request review event: 14
  • Pull request event: 25
  • Fork event: 3
  • Create event: 9
Last Year
  • Issues event: 8
  • Watch event: 1
  • Delete event: 2
  • Issue comment event: 23
  • Push event: 62
  • Pull request review comment event: 5
  • Pull request review event: 14
  • Pull request event: 25
  • Fork event: 3
  • Create event: 9

Committers

Last synced: 5 months ago

All Time
  • Total Commits: 184
  • Total Committers: 6
  • Avg Commits per committer: 30.667
  • Development Distribution Score (DDS): 0.255
Past Year
  • Commits: 156
  • Committers: 6
  • Avg Commits per committer: 26.0
  • Development Distribution Score (DDS): 0.288
Top Committers
Name Email Commits
Sean Kim 3****8@u****m 137
Marcus Edwards m****s@g****m 25
Marcus Edwards 9****c@u****m 18
Daniel S. Katz d****z@i****g 2
Juanjo Bazán j****n@g****m 1
MozoH m****h@p****t 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 5 months ago

All Time
  • Total issues: 7
  • Total pull requests: 18
  • Average time to close issues: over 1 year
  • Average time to close pull requests: 3 days
  • Total issue authors: 4
  • Total pull request authors: 5
  • Average comments per issue: 2.0
  • Average comments per pull request: 0.39
  • Merged pull requests: 11
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 5
  • Pull requests: 18
  • Average time to close issues: 4 days
  • Average time to close pull requests: 3 days
  • Issue authors: 3
  • Pull request authors: 5
  • Average comments per issue: 1.6
  • Average comments per pull request: 0.39
  • Merged pull requests: 11
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • HectorMozo3110 (3)
  • comp-phys-marc (2)
  • seankim658 (1)
  • apizzuto (1)
Pull Request Authors
  • seankim658 (9)
  • comp-phys-marc (6)
  • HectorMozo3110 (1)
  • xuanxu (1)
  • danielskatz (1)
Top Labels
Issue Labels
enhancement (2) help wanted (2) good first issue (1)
Pull Request Labels
documentation (2) enhancement (2)

Packages

  • Total packages: 1
  • Total downloads:
    • npm 44 last-month
  • Total dependent packages: 1
  • Total dependent repositories: 1
  • Total versions: 5
  • Total maintainers: 1
npmjs.org: qasm-ts

QASM, the low-level programming language for quantum circuit specification, implemented in TypeScript.

  • Versions: 5
  • Dependent Packages: 1
  • Dependent Repositories: 1
  • Downloads: 44 Last month
Rankings
Dependent repos count: 10.3%
Forks count: 15.4%
Stargazers count: 21.0%
Dependent packages count: 21.0%
Average: 21.7%
Downloads: 40.8%
Maintainers (1)
Last synced: 5 months ago

Dependencies

package-lock.json npm
  • @types/jasmine 3.10.3 development
  • @types/node 12.20.43 development
  • balanced-match 1.0.2 development
  • brace-expansion 1.1.11 development
  • concat-map 0.0.1 development
  • fs.realpath 1.0.0 development
  • glob 7.2.0 development
  • inflight 1.0.6 development
  • inherits 2.0.4 development
  • jasmine 3.99.0 development
  • jasmine-core 3.99.0 development
  • minimatch 3.0.4 development
  • once 1.4.0 development
  • path-is-absolute 1.0.1 development
  • wrappy 1.0.2 development
  • arg 4.1.3
  • buffer-from 1.1.2
  • diff 4.0.2
  • inherits 2.0.3
  • make-error 1.3.6
  • path 0.12.7
  • process 0.11.10
  • source-map 0.6.1
  • source-map-support 0.5.21
  • ts-node 8.10.2
  • typescript 3.9.10
  • util 0.10.4
  • yn 3.1.1
package.json npm
  • @types/jasmine ^3.4.0 development
  • @types/node ^12.7.2 development
  • jasmine ^3.4.0 development
  • path ^0.12.7
  • ts-node ^8.3.0
  • typescript ^3.5.3
.github/workflows/draft-pdf.yml actions
  • actions/checkout v4 composite
  • actions/upload-artifact v4 composite
  • openjournals/openjournals-draft-action master composite