[gem5-users] How to disable style checker

2017-04-26 Thread maitysanchayan
Hello, I have my own local branch of gem5 to which I want to commit some splash2 benchmark code. Now this code does not exactly comply with gem5 coding rules so while trying to commit this locally it seems to run the style checked which fails and then does not commit. Can someone please tell me h

Re: [gem5-users] can't run Ubuntu 14.04 image

2017-04-26 Thread Jason Lowe-Power
For "Kernel panic - not syncing: Cannot allocate trampoline", it's probably a an issue with the paramters you're passing to the kernel on boot. Try with these parameters: boot_options = ['earlyprintk=ttyS0', 'console=ttyS0', 'lpj=723', 'root=/dev/hda']. Adding the option "noapic" may help, too

Re: [gem5-users] How to disable style checker

2017-04-26 Thread Serhat Gesoglu
Hello, You can use "--ignore-style" command line option to disable style checking hooks. Here is the source: http://gem5.org/Build_System#Command_line_options Cheers Serhat From: gem5-users [gem5-users-boun...@gem5.org] on behalf of maitysancha...@gmail

Re: [gem5-users] How to disable style checker

2017-04-26 Thread maitysanchayan
Hello Serhat, On 17-04-26 14:56:02, Serhat Gesoglu wrote: > Hello, > You can use "--ignore-style" command line option to disable style checking > hooks. > Here is the source: http://gem5.org/Build_System#Command_line_options > I tried that. scons --ignore-style build/X86/gem5.opt

[gem5-users] Maximum Simulated Instructions

2017-04-26 Thread Muzamil Rafique
Hi All, I am running four different benchmarks on a quad-core CPU. I have two questions: 1. What is the difference between: max_insts_all_threads and max_insts_any_thread? *** /* code from BaseCPU.py */ max_insts_all_threads = Param.Counter(0, "terminate when all threads have reached

Re: [gem5-users] can\'t run Ubuntu 14.04 image

2017-04-26 Thread shine
Hello,Jason When my boot_flag is " self.boot_osflags = 'earlyprintk=ttyS0 console=ttyS0 lpj=723 ' + \ 'root=/dev/hda1 '",it already appear the previous problem. I add noapic to it, the m5term terminal appears" hda: dma_timer_expiry: DMA status (0x64) hda: DMA interr

Re: [gem5-users] can't run Ubuntu 14.04 image

2017-04-26 Thread shine
Hello,Jason When my boot_flag is " self.boot_osflags = 'earlyprintk=ttyS0 console=ttyS0 lpj=723 ' + \ 'root=/dev/hda1 '",it already appear the previous problem. I add noapic to it, the m5term terminal appears" hda: dma_timer_expiry: DMA status (0x64) hda: DMA interr

[gem5-users] Resize linux-x86.img

2017-04-26 Thread shine
Hi, I want to use gem5 to run SPEC2006 in FS mode. But when I copy SPEC2006 into linux-x86.img, it warns " no more space". I try to make a new bigger image, but it can run successfully. So I want to ask how to resize linux-x86.img downloaded from gem.org. Thanks for answers._