Re: [gem5-users] Implementing tag-less cache architecture only for the last level cache

2017-12-14 Thread Saivarun R
Hi jason, Apologies for a naive understanding of your tutorial, I just thought the cache that you designed can be the design of tag-less caches, since there were no tags used in your implementation. Apparently, I'm understanding is completely wrong. I need a tagless architecture for the cache to

Re: [gem5-users] Problem with running apk on gem5-android

2017-12-14 Thread Rana Elnaggar
Hi, As a follow up to my question, I have finally managed to run apk activities correctly. For future reference, to run apk in gem5 we need todo the following: 1) get the package_name and activity_name 2) am start -n package_name/.activity_name package_name and activity_name can be

Re: [gem5-users] Help with application installing on linux x86

2017-12-14 Thread Rana Elnaggar
Hi Jasmin, Thanks a lot for yoyr reply. I have tried chroot, however, I cannot apt-get install any application, any suggestion onn how to make apt-get work to install the required packages to get lib/modules ? Best Regards, Rana From: Rana Elnaggar Sent:

Re: [gem5-users] Implementing tag-less cache architecture only for the last level cache

2017-12-14 Thread Jason Lowe-Power
Hi Varun, The SimpleCache is just a starting point. It isn't at all a realistic model! It's an example to show you how to use gem5 ports. It will not be able to handle most realistic situations (e.g., being used as anything other than a single core L1 cache). You can take this code as a starting

[gem5-users] Running a pthread on Gem5 SE x86

2017-12-14 Thread Nidhi Kamath
Hello, I am trying to run a simple pthread program in gem5 SE x86 mode but it errors out. the program is as below #include #include int result; void *sum(void *threadid) { int a=5; int b=5; result = a+b; printf("result from 1st thread is %d\n",result); pthread_exit(NULL); }