[gem5-users] Rename reads for McPAT

2022-07-01 Thread Pedro Henrique Exenberger Becker
nk you. -- Pedro Henrique Exenberger Becker Ph.D. Student at Universitat Politècnica de Catalunya ___ gem5-users mailing list -- gem5-users@gem5.org To unsubscribe send an email to gem5-users-le...@gem5.org

[gem5-users] Re: How to make _addr version of m5 ops work on x86+syscall emulation?

2022-05-12 Thread Pedro Henrique Exenberger Becker
Thanks Jason, for the quick reply. I was using SE just to do tests faster. I guess doing it in FS from scratch will solve both issues I have. I'll try that. Again, thank you. Em qui, 12 de mai de 2022 17:16, Jason Lowe-Power escreveu: > Hello, > > In the first case, since you're using SE

[gem5-users] Re: M5ops for KVM

2022-05-09 Thread Pedro Henrique Exenberger Becker
000198 T m5_read_file_addr > 0120 T m5_reset_stats_addr > 0078 T m5_rpns_addr > 00d8 T m5_sum_addr > 01c8 T m5_switch_cpu_addr > 0090 T m5_wake_cpu_addr > 0210 T m5_work_begin_addr > 0228 T m5_work_

[gem5-users] Has the mailing list 'host' changed?

2022-04-29 Thread Pedro Henrique Exenberger Becker
also moved? At https://www.gem5.org/mailing_lists/ it's indicated to use https://harmonylists.io/list/gem5-users.gem5.org but I cannot log in with my former user/passwd. Should I just re-create my user there? Sorry for the dumb question, and thank you. -- Pedro Henrique Exenberger Becker Ph.

[gem5-users] Re: Is thread lock not working under both SE and FS mode?

2022-03-23 Thread Pedro Henrique Exenberger Becker via gem5-users
tc.) that is capable of multi-threading synchronization? > > Best Regards, > Meng > ___ > 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

[gem5-users] Re: Difference between XBase and XURa .isa operands

2022-02-12 Thread Pedro Henrique Exenberger Becker via gem5-users
, I'd be interested in it as well... > > Respectfully, > > Jason Z. > ___ > 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

[gem5-users] Re: How to turn off Gem5 git commit script?

2021-09-24 Thread Pedro Henrique Exenberger Becker via gem5-users
You can try `git commit -m "my message" - n` -n is the short version of - -no-verify flag. https://git-scm.com/docs/git-commit However your commits won't be compliant with gem5 standards. I guess this can be a problem if you want to push your code/modifications to the main repo some day, but I'm

[gem5-users] Re: gem5.org seems to be down

2021-06-08 Thread Pedro Henrique Exenberger Becker via gem5-users
I'm experiencing this as well. Apparently, it is not just for us: https://downforeveryoneorjustme.com/gem5.org Best, Pedro. Em ter., 8 de jun. de 2021 às 12:07, Rajesh S via gem5-users < gem5-users@gem5.org> escreveu: > Hi, > > I was looking around in the documentation and I noticed that

[gem5-users] Re: Boot FS with kvm and multiple cores

2021-05-14 Thread Pedro Henrique Exenberger Becker via gem5-users
Hi Giacomo, thanks for the feedback. However, I didn't follow when you said > I gave a quick look. _build_kvm seems more or less the same. There is a manipulation of the event queues specifically for the KVM case in fs_bigLITTLE.py that I couldn't find in fs.py. In my experiments, if those are

[gem5-users] Re: Boot FS with kvm and multiple cores

2021-05-14 Thread Pedro Henrique Exenberger Becker via gem5-users
Hi Giacomo, --little-cpus option defaults to 1. This means you are effectively running > with 9 cpus. Could you try setting --little-cpus to zero from command line? Yes, this works. Rookie mistake of mine. At this point, I have already adapted code from fs_bigLITTLE.py script to the fs.py

[gem5-users] Re: O3CPU with X86 CPU and pthreads

2021-03-02 Thread Pedro Henrique Exenberger Becker via gem5-users
Hi Ahmed, did you found a solution for this? I'm having the same error when running a multithreaded application with the DerivO3CPU x86 model. Thank you in advance. Pedro Em ter., 23 de fev. de 2021 às 13:27, Ahmed F Khawaja via gem5-users < gem5-users@gem5.org> escreveu: > Greetings, > >

[gem5-users] Get curTick at application level

2019-04-06 Thread Pedro Henrique Exenberger Becker
Hi, I would like to trace the current tick in some points of an application running under gem5 with the RISC-V isa and SE mode. Like: main() { foo(); print_current_tick_here(); bar(); } Is there a simple solution to do this? I know that m5_dumpstats() can output this information within a