You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My latest attempt at building a default Tile_PE failed for the following reason: It looks as though there is a requirement to have an env var GARNET_HOME in order for the mflowgen scripts to work.
Seems like this should be documented in the README (which I can do) and there should be an env-var check somewhere in the scripts (which somebody else should probably do) e.g.
if test [ "$GARNET_HOME" == "" ]; then
echo ERROR oops looks like you forgot to set env var GARNET_HOME
exit 13
fi
...or am I missing something?
The text was updated successfully, but these errors were encountered:
Also: looks like gen_rtl scripts assume that python points to python3 although there are apparently no specification or checks to make sure;
% make rtl
File "garnet.py", line 28
def __init__(self, width, height, add_pd, interconnect_only: bool = False,
^
SyntaxError: invalid syntax
Scripts should probably use python3 instead of simply python and/or do a check
``
v=python -c 'import sys; print(sys.version_info[0]*1000+sys.version_info[1])'
if [ $v -lt 3000 ] ; then
echo ""; echo "ERROR found python version $v -- should be at least 3000"; exit 13
fi
My latest attempt at building a default
Tile_PE
failed for the following reason: It looks as though there is a requirement to have an env varGARNET_HOME
in order for themflowgen
scripts to work.Seems like this should be documented in the
README
(which I can do) and there should be an env-var check somewhere in the scripts (which somebody else should probably do) e.g....or am I missing something?
The text was updated successfully, but these errors were encountered: