New ARTIQ compiler, third iteration
 
 
 
 
 
Go to file
Sebastien Bourdeauducq 8ef9e74aaf move rustfmt.toml upper 2022-01-09 11:31:06 +08:00
llvm llvm: fix TLI-musl.patch 2021-12-29 20:52:59 +08:00
nac3artiq introduce IRRT, implement power 2022-01-09 00:57:50 +08:00
nac3ast fix broken tests 2021-12-28 01:38:16 +08:00
nac3core move rustfmt.toml upper 2022-01-09 11:31:06 +08:00
nac3parser fix broken tests 2021-12-28 01:38:16 +08:00
nac3standalone demo: rewrite in Rust 2022-01-09 10:51:10 +08:00
runkernel nac3core: format, fix clippy warning 2022-01-09 01:12:18 +08:00
.gitignore nac3embedded: basic source extraction 2020-12-18 23:45:09 +08:00
Cargo.lock introduce IRRT, implement power 2022-01-09 00:57:50 +08:00
Cargo.toml update inkwell. Closes #67 2021-12-25 22:17:06 +08:00
README.md README: update 2021-12-13 19:02:46 +08:00
flake.lock update dependencies 2022-01-04 22:00:29 +08:00
flake.nix flake: fix/cleanup 2022-01-09 11:30:36 +08:00
rustfmt.toml move rustfmt.toml upper 2022-01-09 11:31:06 +08:00

README.md

NAC3

NAC3 is a major, backward-incompatible rewrite of the compiler for the ARTIQ physics experiment control and data acquisition system. It features greatly improved compilation speeds, a much better type system, and more predictable and transparent operation.

NAC3 has a modular design and its applicability reaches beyond ARTIQ. The nac3core module does not contain anything specific to ARTIQ, and can be used in any project that requires compiling Python to machine code.

WARNING: NAC3 is currently experimental software and several important features are not implemented yet.

Packaging

NAC3 is packaged using the Nix Flakes system. Install Nix 2.4+ and enable flakes by adding experimental-features = nix-command flakes to nix.conf (e.g. ~/.config/nix/nix.conf).

Try NAC3

After setting up Nix as above, use nix shell github:m-labs/artiq/nac3 to get a shell with the NAC3 version of ARTIQ. See the examples directory in ARTIQ (nac3 Git branch) for some samples of NAC3 kernel code.

For developers

This repository contains:

  • nac3ast: Python abstract syntax tree definition (based on RustPython).
  • nac3parser: Python parser (based on RustPython).
  • nac3core: Core compiler library, containing type-checking and code generation.
  • nac3standalone: Standalone compiler tool (core language only).
  • nac3artiq: Integration with ARTIQ and implementation of ARTIQ-specific extensions to the core language.
  • runkernel: Simple program that runs compiled ARTIQ kernels on the host and displays RTIO operations. Useful for testing without hardware.

Use nix develop in this repository to enter a development shell. If you are using a different shell than bash you can use e.g. nix develop --command fish.

Build NAC3 with cargo build --release. See the demonstrations in nac3artiq and nac3standalone.