This project is currently under construction. It doesn't do anything as of yet, nor is it a complete library.
vsa-graph
is a graph compiler interpretation of our VSA programming lanugage
experiments. The rough idea is this: the representation of syntax, and
the operations performed over them, can be thought of as a computational graph.
Consider the following lisp example:
(cons 'foo 'bar)
Roughly, the process has two components:
┌──────────────────┐ ┌───────────────────┐
│ │ │ │
│ │ │ │
│ │ │ │
│ Syntactic ├──────────►│ Evaluation │
│ Analysis │ │ │
│ │ │ │
│ │ │ │
│ │ │ │
└──────────────────┘ └───────────────────┘
We can of course break down the syntactic analysis into smaller component
parts, but the more interesting vertex is Evaluation
. In this step,
we perform optimizations, but in order to execute the script we obey an
evalutation rule.
Following Tomkins-Flanagan & Kelly (2024), we can think that, instead of having distinct operators that are applied to arguments, that we instead identify the operators with graph nodes.
This does not seem to be a novel approach. For example, this project, as well as the Neuromorphic Intermediate Representation. We will not be using these tools, as they are complex in their own right and deserve their own research. However, in principle we ought to be able to take this code and translate it into NIR, as it is also a graph-based approach.
To run, you must install uv. On Mac and Linux, it is:
curl -LsSf https://astral.sh/uv/install.sh | sh
On Windows it is:
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
Clone the repository, and cd
into it. In order to run the script,
enter the command:
uv run ./src/main.py
For personal hacking or any commits, any commit must be formatted using
black
as well as pass mypy --strict
. Similarly, if adding a
new feature or changing the functioning of some module, make sure to add
the following:
- Update or add documentation to reflect the changes.
- Write unit tests in the respective
test_*.py
file. - Ensure that these all pass.
To make this easier, a small bash script ./build.sh
has been provided
that auto-runs the formatter, type-checker, and tests.
Currently the basics of the graph system are laid out, as well as an
implementation of (1) an abstract base class for VSAs, (2) HRRs. There is
also a rudimentary graph system in /graph/async_graph.py
and
/graph/sync_graph.py
.
In order to truly experiment with the system as a compilation target for a programming language, I need to implement a translation from some language to the graph, respecting semantics.
Something to note about the graph is that, as of right now, there are no constraints on the kind of graph you can make. It's the wild west of freedom, so there's nothing stopping users from making terrible graphs with terrible performance. Figuring out how to constrain the user into making interpretable graphs is a point of research.
Given we need to work with a small programming language to test out our ideas, I've chosen MinCaml as the language to test compilation with.
Because parsing is the most annoying part of the compiler pipeline, we will
be using the Lark
package. This adds support for LALR
grammar definition
and parsing. The rudiments of this addition are found in ./vsa_graph/mincaml/
.