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

2021-09-24 Thread Gabe Black via gem5-users
It sounds to me like you've somehow installed the gem5 git hooks for everything on your machine through either the user global or a machine global git config. What you want to do is install the hooks (scripts or links in .git/hooks) in the gem5 repository itself. SCons will prompt you to do this

[gem5-users] Delta cycle

2021-09-24 Thread Gabriel Busnot via gem5-users
Hi, Is there a way to obtain the delta-cycle semantics of SystemC using the existing event management features in gem5? In other words, I would like to be able to delta-schedule an event at the current tick doing something like eventManager.schedule(event, curTick(), delta=true) so that it

[gem5-users] Re: O3CPU Branch Predictor Similation

2021-09-24 Thread Arthur Perais via gem5-users
Hi Scott, As you correctly point out, the O3 model is being optimistic in its assumptions. It is even more optimistic in the sense that instruction fetch deals in micro-ops and not in architectural instructions (although most often one arch instruction will yield one micro-op). Therefore,

[gem5-users] Re: syscall perf_event_open (#241) unimplemented

2021-09-24 Thread Giacomo Travaglini via gem5-users
Hi It can be implemented in SE mode, but that would require us to implement/emulate perf_events in gem5 Is there a specific reason why you need to use perf_events in SE mode? Have you considered gathering statistics Through the gem5 ops? Kind Regards Giacomo > -Original Message- >

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

2021-09-24 Thread Todd Bezenek via gem5-users
That works. Thank you, Pedro. On Thu, Sep 23, 2021 at 11:36 PM Pedro Henrique Exenberger Becker < pe...@ac.upc.edu> wrote: > 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

[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