[gem5-users] How to Calculate The numCycles Value From stats.txt File Using The Other Reported Cycles

2022-04-11 Thread jamesbondtia--- via gem5-users
Hi, I have been adding the different reported cycles in the stats.txt file to see if they add up to the numCycles, but they do not. Is there a way to calculate the numCycles value shown in the stats.txt using the other cycles given in the stats.txt file for the O3?

[gem5-users] Re: Pass Param to BaseCPU from cmd line

2022-04-03 Thread jamesbondtia--- via gem5-users
That worked! Thanks! For anyone who might run into this issue I changed my cmd line to : build/ARM/gem5.opt --outdir=run/test configs/example/se.py --cmd tests/test-progs/hello/bin/arm/linux/hello --mem-size=4GB --cpu-type=DerivO3CPU --cpu-clock 2GHz --sys-clock 2GHz --l1d_size 32kB --l1d_assoc

[gem5-users] Pass Param to BaseCPU from cmd line

2022-04-03 Thread jamesbondtia--- via gem5-users
Hi, I am trying to pass a boolean as one of the params to the BaseCPU class from the Options.py file. I have declared my boolean in the Options.py file as parser.add_argument('--defense', action="store_true", default=False, help="Enable defense") so that I could enable or disable from the cmd

[gem5-users] gem5: SPEC Tutorial

2022-01-12 Thread jamesbondtia--- via gem5-users
I am working on this tutorial : Run SPEC CPU 2017 / SPEC CPU 2006 Benchmarks in Full System Mode with gem5art and I am wondering if someone could help and tell me the changes I should make for packer to produce the spec2017 image as an .img extension?

[gem5-users] Re: Guest Binaries for X86

2021-12-23 Thread jamesbondtia--- via gem5-users
Hi Bobby Thank you for the resources; I will look into those and see if they help. Currently, I am trying to create an X86 disk image to run my benchmark to test the performance of a defense I am working on, but I just haven't been able to do it so far.

[gem5-users] Re: Guest Binaries for X86

2021-12-22 Thread jamesbondtia--- via gem5-users
Hi Gabe, Thanks for the reply. Is this a possible addition for future updates? ___ 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] Guest Binaries for X86

2021-12-08 Thread jamesbondtia--- via gem5-users
Hi, I noticed that the gem5 website only has guest binaries for ARM to run in full system mode, which are up to date and work well. I wonder if it is possible to have Full System guest Binaries for X86 and the other architectures. Best James ___

[gem5-users] Reading src and dest registers using GDB

2021-06-20 Thread jamesbondtia--- via gem5-users
Hi, I am trying to read the values in source registers during the rename stage of the O3 processor for an instruction, e.g., add R2, R1, R0 ( get/print values contained in those registers). In GDB, I put a breakpoint at the end of the rename stage, and my goal is to read the values contained