[gem5-users] Re: ARMv8-A inorder processor in gem5

2021-01-04 Thread Bobby Bruce via gem5-users
gem5 can be quite resource intensive when compiling. 9 threads may be too
much for your laptop to handle. Have you tried reducing the number of
threads? To be safe, you could try running with two threads (using `-j2`)
and see what happens.

--
Dr. Bobby R. Bruce
Room 2235,
Kemper Hall, UC Davis
Davis,
CA, 95616

web: https://www.bobbybruce.net

Please consider making a submission to GI@ICSE '21:
http://geneticimprovementofsoftware.com/gi2021icse.html


On Mon, Jan 4, 2021 at 1:53 PM javad mozaffari via gem5-users <
gem5-users@gem5.org> wrote:

> Hello,
> I want to use gem5 to simulate arm processor but I have problem and I hope
> you can help me.i download gem5 and when i want to install with scons
> build/ARM/gem5.opt -j9 my ubuntu is freezing and i have to restart my
> laptop but In several attempts i install x86. i don't know what the problem
> is.
>
> Thanks
> ___
> gem5-users mailing list -- gem5-users@gem5.org
> To unsubscribe send an email to gem5-users-le...@gem5.org
> %(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s
___
gem5-users mailing list -- gem5-users@gem5.org
To unsubscribe send an email to gem5-users-le...@gem5.org
%(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s

[gem5-users] Regarding creating Sim Object and computing the number of instructions

2021-01-04 Thread Ayush Kumar Varshney via gem5-users
Hi all,

Happy New Year!!

I am new to gem5, I want to create a simple cycle accurate Object in gem5
which can print the number of executed instruction. I can use the gem5
tutorial to create an object but how can i print the total number of
executed instructions?

Thanks in advance!
Ayush
___
gem5-users mailing list -- gem5-users@gem5.org
To unsubscribe send an email to gem5-users-le...@gem5.org
%(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s

[gem5-users] ARMv8-A inorder processor in gem5

2021-01-04 Thread javad mozaffari via gem5-users
Hello,
I want to use gem5 to simulate arm processor but I have problem and I hope
you can help me.i download gem5 and when i want to install with scons
build/ARM/gem5.opt -j9 my ubuntu is freezing and i have to restart my
laptop but In several attempts i install x86. i don't know what the problem
is.

Thanks
___
gem5-users mailing list -- gem5-users@gem5.org
To unsubscribe send an email to gem5-users-le...@gem5.org
%(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s

[gem5-users] Re: Passing 2-dimension list from Python to C++ object

2021-01-04 Thread Giacomo Travaglini via gem5-users
Hi Daecheol,

As far as I am aware this is not possible.
That would require something like VectorParam.VectorParam.Int which is not 
currently supported

I would recommend you to change your python interface to accommodate for this 
missing feature

Kind Regards

Giacomo

From: Daecheol You via gem5-users 
Sent: 17 December 2020 11:10
To: gem5 users mailing list 
Cc: Daecheol You 
Subject: [gem5-users] Passing 2-dimension list from Python to C++ object

Hi all,

For passing parameter to C++ object from Python, gem5 provides Param object. 
Through Param, int, float, string parameters can be passed to C++ object 
(Param.Int(), Param.Float(), Param.String(), etc)

Now, I want to pass 2-dimension list from Python ([ [] ]), and get it as a 
vector> object at C++ object. I found that there is 
VectorParam for list type, but how can I define 2-dimension list, which needs 
to be passed as vector>, with VectorParam?


Thanks,
Daecheol.
IMPORTANT NOTICE: The contents of this email and any attachments are 
confidential and may also be privileged. If you are not the intended recipient, 
please notify the sender immediately and do not disclose the contents to any 
other person, use it for any purpose, or store or copy the information in any 
medium. Thank you.
___
gem5-users mailing list -- gem5-users@gem5.org
To unsubscribe send an email to gem5-users-le...@gem5.org
%(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s