Open phanrahan opened 1 year ago
I would upgrade magma, either through a global upgrade: python -m pip install -e --upgrade
or magma-specific upgrade: python -m pip install magma-lang --upgrade
. If you do python -m pip freeze | grep magma
you should ideally see version >= 2.3.0.
For future reference, passing options to magma compilation is done through the magma_opts
kwarg, so like:
tester.compile_and_run(..., magma_output="mlir-verilog", magma_opts={"check_circt_opt_version": False})
Fault fails with wrong circt version.
Trying to disable the check as follows doesn't work.