Re: Fwd: [m5-users] modifying O3CPU.py parameters

2008-02-04 Thread Kevin Lim
Hi Dean, Does this mean I am going to add a new object into M5(write C++ code for perfect_branch_predictor, then instantiate it using python)? I'm thinking you would have to do write a "perfect_branch_predictor" object to plug in. The only complication is you have to figure out how to resolve

Re: [m5-users] modifying O3CPU.py parameters

2008-02-04 Thread nathan binkert
> question 1: > How can I configure a detailed cpu to have a perfect branch > predictor? I looked at bpred_unit_impl.hh and there are only two types > of predictor(local and tournament.) Does this mean I am going to add a > new object into M5(write C++ code for perfect_branch_predictor, then >

Fwd: [m5-users] modifying O3CPU.py parameters

2008-02-04 Thread Korey Sewell
>>> Does this mean I am going to add a >>> new object into M5(write C++ code for perfect_branch_predictor, then >>> instantiate it using python)? I'm thinking you would have to do write a "perfect_branch_predictor" object to plug in. The only complication is you have to figure out how to resolve t

[m5-users] modifying O3CPU.py parameters

2008-02-04 Thread dean michael ancajas
hi all, I'm trying to replicate results from a paper for a course project, question 1: How can I configure a detailed cpu to have a perfect branch predictor? I looked at bpred_unit_impl.hh and there are only two types of predictor(local and tournament.) Does this mean I am going to add a