nac3_sca/README.md

56 lines
2.7 KiB
Markdown
Raw Permalink Normal View History

2022-04-18 15:11:32 +08:00
<div align="center">
![icon](https://git.m-labs.hk/M-Labs/nac3/raw/branch/master/nac3.svg)
2022-04-18 15:11:32 +08:00
</div>
2021-12-13 19:02:13 +08:00
2022-04-18 15:11:32 +08:00
# NAC3
2021-12-13 19:02:13 +08:00
NAC3 is a major, backward-incompatible rewrite of the compiler for the [ARTIQ](https://m-labs.hk/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](https://nixos.org) Flakes system. Install Nix 2.8+ and enable flakes by adding ``experimental-features = nix-command flakes`` to ``nix.conf`` (e.g. ``~/.config/nix/nix.conf``).
2021-12-13 19:02:13 +08:00
## Try NAC3
2022-01-24 15:54:01 +08:00
### Linux
2022-01-24 11:35:39 +08:00
After setting up Nix as above, use ``nix shell git+https://github.com/m-labs/artiq.git?ref=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.
2021-12-13 19:02:13 +08:00
2022-04-05 18:07:38 +08:00
### Windows
2022-01-24 15:54:01 +08:00
2022-04-05 18:07:38 +08:00
Install [MSYS2](https://www.msys2.org/), and open "MSYS2 MinGW x64". Edit ``/etc/pacman.conf`` to add:
2022-01-24 15:54:01 +08:00
```
2022-04-05 18:07:38 +08:00
[artiq]
SigLevel = Optional TrustAll
Server = https://lab.m-labs.hk/msys2
2022-01-24 15:54:01 +08:00
```
2022-04-05 18:07:38 +08:00
Then run the following commands:
2022-01-24 15:54:01 +08:00
```
2022-04-05 18:07:38 +08:00
pacman -Syu
pacman -S mingw-w64-x86_64-artiq
2022-01-24 15:54:01 +08:00
```
2022-03-28 10:45:01 +08:00
Note: This build of NAC3 cannot be used with Anaconda Python nor the python.org binaries for Windows. Those Python versions are compiled with Visual Studio (MSVC) and their ABI is incompatible with the GNU ABI used in this build. We have no plans to support Visual Studio nor the MSVC ABI. If you need a MSVC build, please install the requisite bloated spyware from Microsoft and compile NAC3 yourself.
2021-12-13 19:02:13 +08:00
## For developers
2021-06-25 12:28:33 +08:00
This repository contains:
2021-12-13 19:02:13 +08:00
- ``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).
2022-06-06 18:13:21 +08:00
- ``nac3ld``: Minimalist RISC-V and ARM linker.
2021-12-13 19:02:13 +08:00
- ``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``.