Closed noureddine-as closed 5 years ago
Did you modify shoc.xe? I cannot reproduce this issue at HEAD.
Actually I'm using the online Dockerfile image, and apparently it points to commit 43f59720bb9cef0325995d29c029531f0c7463e9 which is far from the actual commit. I'll try to build the Docker image from scratch and get and get back to you.
Thanks!
RUN pip install pyparsing pytest numpy
to the Dockerfile since the script needs them). make run
in docker
directory.sweeps
I launch the script and I still get the error!
root@d02574e41f1d:/workspace/gem5-aladdin/sweeps# python generate_design_sweeps.py benchmarks/machsuite.xe
root@d02574e41f1d:/workspace/gem5-aladdin/sweeps# ./generate_design_sweeps.py benchmarks/shoc.xe
I confirm that it's due to the Python and PyParsing versions. Just got back to python 2.7.6 and everything works well. Thanks @xyzsam !
How did you solve the problem? I'm having the same error. I changed the python version from 2.7.12 to 2.7.6, then I installed pyparsing pytest numpy. However, I still face the same problem. Thanks.
@gearaldojunior actually I just created a separate Docker image, based on the given Dockerfile, I only changed the base image (first line) with FROM gbrowdy/python-2.7.6
then added another line to install Numpy. Other things pyparsing ..etc. are already installed there.
@gearaldojunior actually I just created a separate Docker image, based on the given Dockerfile, I only changed the base image (first line) with
FROM gbrowdy/python-2.7.6
then added another line to install Numpy. Other things pyparsing ..etc. are already installed there.
Thanks! It worked :)
Glad it helped :)
Hello, I'm discovering Aladdin and Gem5-aladdin, and I'd like to try some examples from the
SHOC
benchmark suite. The example provided in https://github.com/ysshao/ALADDIN cites theSHOC/triad
example. So I'd like to generate other configurations using Xenon.For
shoc.xe
andmachsuite.xe
I get the following error, did I miss something in my way? (I also mention thatcortexsuite
is not in the repo).Thanks for the help! Best regards,
Related https://github.com/ysshao/ALADDIN/issues/16 .