diff --git a/docs/running-calyx/fud/circt.md b/docs/running-calyx/fud/circt.md index 4ad9838d0e..eae24d5047 100644 --- a/docs/running-calyx/fud/circt.md +++ b/docs/running-calyx/fud/circt.md @@ -22,7 +22,7 @@ path/to/circt-translate --export-calyx /path/to/file For example, you can use the expected output of the test `tests/backend/mlir/simple.expect`: ``` -{{#include ../../tests/backend/mlir/simple.expect}} +{{#include ../../../tests/backend/mlir/simple.expect}} ``` Using the command: @@ -35,7 +35,7 @@ path/to/circt-translate --export-calyx tests/backend/mlir/simple.expect This should output: ``` -{{#include ../../tests/backend/mlir/simple.futil}} +{{#include ../../../tests/backend/mlir/simple.futil}} ``` ## Native Representation to MLIR diff --git a/docs/running-calyx/fud/external.md b/docs/running-calyx/fud/external.md index 0a2bf6c56c..455987ab2f 100644 --- a/docs/running-calyx/fud/external.md +++ b/docs/running-calyx/fud/external.md @@ -18,9 +18,10 @@ The following defines a stage that transforms [MrXL][] programs to Calyx programs. ```python -{{#include ../../frontends/mrxl/fud/mrxl.py}} +{{#include ../../../frontends/mrxl/fud/mrxl.py}} ``` + External stages *must* define default values for configuration keys using the `Stage.defaults()` static method and the name of the stage using the static `name` field.