[gem5-users] Re: Error with gem5 book's Full System Configuration File

2021-06-16 Thread Ahmed, Md Rubel via gem5-users
Could you paste error full commad and error log. Thanks Sent via the Samsung Galaxy A11, an AT&T 4G LTE smartphone Get Outlook for Android From: gem5-users on behalf of Rusty Nail Sent: Wednesday, June 16, 2021 4:19:58 PM To: m5-us...@m5

[gem5-users] How to find the direction of a packet

2020-08-10 Thread Ahmed, Md Rubel via gem5-users
Hi, If I attach a communication monitor between two components (lets say in between L2 cache and toL2Bus) to observe the packets exchange between them, is it possible to know the direction of each packet? For example which packet is coming to the L2 Cache or going from L2 cache. I am observing

[gem5-users] Re: Memory Addresses in Gem5

2020-08-11 Thread Ahmed, Md Rubel via gem5-users
Hi, pkt->getAddr() returns memory address. pkt->print() also returns block address and offset. Thanks From: ABD ALRHMAN ABO ALKHEEL via gem5-users Sent: Tuesday, August 11, 2020 6:32 PM To: gem5 users mailing list ; gem5-users Cc: ABD ALRHMAN ABO ALKHEEL Sub

[gem5-users] How to get program specific traces only?

2020-09-07 Thread Ahmed, Md Rubel via gem5-users
Hi all, I am using a communication monitor(CommMonitor) to observe packets exchanged at a master and slave interface using the following command: build/X86/gem5.opt --debug-flags=CommMonitor --debug-file=sum_cpu.txt.gz configs/example/se_edit.py -c tests/test-progs/hello/bin/x86/linux/main -n 1

[gem5-users] Re: How to get program specific traces only?

2020-09-07 Thread Ahmed, Md Rubel via gem5-users
abled at the same time. learning.gem5.org I hope this helps. Best regards. -- Francisco Carlos Silva Junior Ph.D student at University of Brasilia _

[gem5-users] Re: Running mutiple programs on different cpu cores

2020-09-11 Thread Ahmed, Md Rubel via gem5-users
Hi Jaspinder; Usually, you specify different workloads in the --cmd argument divided by semicolons(;). For example: build/X86/gem5.opt configs/example/se.py --cmd=tests/test-progs/hello/bin/x86/linux/hello;path/to/the/second/workload --cpu-type=TimingSimpleCPU --l1d_size=64kB --l1i_size=16kB -

[gem5-users] Re: How to see the sender state information of a response pkt

2021-04-06 Thread Ahmed, Md Rubel via gem5-users
I tried printing senders adding comm monitor between a slave and master interface like this, 111000: system.cpu0.icache.icache_cpu: req-0: resp-1: cmd-ReadResp: cmdIndex: 2, addr: 16528 masterId: 5 Here icache sends the response to the cpu0 If you are looking for something like this, I can help