Re: [gem5-users] Errors when running FS with fs.py

2017-02-10 Thread Zamshed Chowdhury
Hi, I think the command you are using is missing the kernel file (vmlinux). The command should be: build/ARM/gem5.opt configs/example/fs.py --disk-image=/home/full_ system_image/disks/arm-ubuntu-natty-headless.img --kernel=/PATH/TO/BINARY/ Hope this helps. Best regards. On Fri, Feb 10, 2017 at

[gem5-users] 答复: Errors when running FS with fs.py

2017-02-10 Thread Wang, Chenxu
Hi Serhat, I use command echo "export M5_PATH=/home/full_system_image/ARM" >> ~/.bashrc to set the M5_PATH, which, from my understanding, should override the path configuration in SysPath.py. Is that right? However, I have also hardcoded the path into SysPath.py. You can have a look on it a

Re: [gem5-users] Parsing options in hmctest.py

2017-02-10 Thread Jason Lowe-Power
Hi Muzamil, I think you should try familiarizing yourself with Python option parsers. For instance https://docs.python.org/2/library/optparse.html. With this, you can specify and act on command line parameters. Then, it is up to you to use those command line options in your Python code to change

[gem5-users] 回复:Re: ScratchPad Memory(SPM) Simulation

2017-02-10 Thread Star_Duster
Hi Marcos, Andreas, Sorry for my late reply. Because I was just back to my lab today. First of all, thanks a lot for your help. I am new to the Gem5, so I still got some questions: 1.The reason why I want to simulate a ScratchPad Memory in gem5 is that I want to study some algorithm performance o

Re: [gem5-users] Errors when running FS with fs.py

2017-02-10 Thread Serhat Gesoglu
Hello, Have you tried changing the path in configs/common/SysPath.py ? Serhat From: gem5-users [gem5-users-boun...@gem5.org] on behalf of Wang, Chenxu [wa...@rose-hulman.edu] Sent: 10 February 2017 09:10 To: gem5-users@gem5.org Subject: [gem5-users] Errors

[gem5-users] Errors when running FS with fs.py

2017-02-10 Thread Wang, Chenxu
Hi everyone, I was trying to run ARM full system simulation on Ubuntu 16.04 and get an error when I run ./build/ARM/gem5.opt configs/example/fs.py --disk-image=/opt/full_system_images/disks/arm-ubuntu-natty-headless.img The error I got is gem5 Simulator System. http://gem5.org gem5 is copy

Re: [gem5-users] Cleaning the gem5 build directory

2017-02-10 Thread Polydoros Petrakis
to remove all target files, or: scons -c build export to remove target files under build and export. So scons -c build would be fine. On 25 January 2017 at 16:26, Jason Lowe-Power wrote: > Hi Somnath, > > I usually just delete the entire build directory. However, you shoul