Google Groups Home
Help | Sign in
reduced info from cbp-1
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  7 messages - Collapse all
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
Jeremy Singer  
View profile
 More options Aug 16 2006, 8:13 am
From: "Jeremy Singer" <jsin...@cs.man.ac.uk>
Date: Wed, 16 Aug 2006 12:13:18 -0000
Local: Wed, Aug 16 2006 8:13 am
Subject: reduced info from cbp-1
Hi all,
The CBP-1 source code framework seemed to provide much more information
about architectural state than CBP-2. It gave details of all
instructions, not just branches, and even allowed the branch predictor
to peek at register values etc. Unless I am mistaken, these features
are not present in CBP-2. Is this a clear-cut design decision? Please
can you give some justification?
Thanks very much,
Jeremy

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
djimenez  
View profile
 More options Aug 17 2006, 4:24 pm
From: "djimenez" <djime...@cs.rutgers.edu>
Date: Thu, 17 Aug 2006 13:24:00 -0700
Subject: Re: reduced info from cbp-1
Hi, Jeremy.

Yes, I decided to provide less information in the traces.  The CBP-2
traces provide the following information:

- Branch address
- Branch target
- Conditional branch opcode
- Conditional branch outcome, i.e. taken or not taken
- Branch type i.e. conditional, indirect, call, return

Most research in branch prediction focuses on these features or a
subset of these features.  For this contest, I am interested in seeing
how far we can push this "standard model" of branch prediction.  I
don't think that any of the finalists of CBP-1 used anything beyond
these features, and my understanding is that the data values provided
in the larger traces went mostly unused by all of the contestants.
--
Daniel Jiménez


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
yanos  
View profile
 More options Aug 18 2006, 3:48 am
From: "yanos" <ya...@cs.ucy.ac.cy>
Date: Fri, 18 Aug 2006 00:48:26 -0700
Local: Fri, Aug 18 2006 3:48 am
Subject: Re: reduced info from cbp-1
Hi Daniel,

i will also find useful to have other information in the traces,
specifically for all instructions: opcodes, register names for sources
and destinations as well as the addresses accessed by memory
instructions (i guess jeremy wanted values also).

BTW i understand the point of limits based only on branch history
information and the time/effort to produce new traces, but may be two
requests will be more convincing :)  in particular, i think for the
limits part of the contest it may be useful to allow for other sources
of information to be investigated. for example, previous work on
dataflow prediction appearred promising (isca03 and hpca03).

thanks - yanos


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
djimenez  
View profile
 More options Aug 18 2006, 3:41 pm
From: "djimenez" <djime...@cs.rutgers.edu>
Date: Fri, 18 Aug 2006 12:41:05 -0700
Local: Fri, Aug 18 2006 3:41 pm
Subject: Re: reduced info from cbp-1
Hi, Yanos.

It might be possible to convince me that more information is a good
idea, but at this point I'm unable to devote the time and resources to
a change of this magnitude in the infrastructure.

However, let me be so bold as to disagree with you with respect to the
limits part of the contest.  I think it will be an important
achievement to establish a credible lower limit on misprediction rates
using just the information available to traditional branch predictors.
If we allow other information to be considered, then the lower bound is
not meaningful for those traditional predictors that form the bulk of
branch prediction research.  By the way, I'm a huge fan of both the
papers you cite (Renju Thomas and Steve Dropsho are two of the sharpest
guys I know who have worked on branch prediction), but they require a
little more buy-in from the rest of the microarchitecture than I think
the industry folks would be willing to provide at this point.  Thanks.
--
Daniel Jiménez


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
hvdieren  
View profile
 More options Aug 23 2006, 8:43 am
From: "hvdieren" <hvdie...@elis.ugent.be>
Date: Wed, 23 Aug 2006 05:43:08 -0700
Local: Wed, Aug 23 2006 8:43 am
Subject: Re: reduced info from cbp-1
Hi Daniel,

I agree that access to all data values is not everybody's concern and
would leave you with a great deal of implementation work. But then, why
not use the same framework as in the previous contest?
Personally I would like to have access to the branch target. Can you
provide this? I believe it is useful to many people. Hongliang also
used this in his loop predictor. BTW, I believe it would be interesting
to measure progress in branch prediction by comparing the winner of
this edition to the winner of the previous edition, which is not
possible now!

Regards,
Hans.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
djimenez  
View profile
 More options Aug 23 2006, 5:50 pm
From: "djimenez" <djime...@cs.rutgers.edu>
Date: Wed, 23 Aug 2006 14:50:38 -0700
Local: Wed, Aug 23 2006 5:50 pm
Subject: Re: reduced info from cbp-1
Hans,

The branch target is provided as the third argument to the 'update'
method in the 'branch_predictor' class, so your predictor will have
access to this value when it is updated.

It's not clear that comparing this year's entries the the previous
finalists would be valuable since the hardware budgets are different.
One could adapt some or all of the previous finalists to work with this
infrastructure.
--
Daniel Jiménez


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Gabriel Loh  
View profile
 More options Aug 30 2006, 10:39 pm
From: "Gabriel Loh" <l...@cc.gatech.edu>
Date: Thu, 31 Aug 2006 02:39:28 -0000
Local: Wed, Aug 30 2006 10:39 pm
Subject: Re: reduced info from cbp-1
Hi, Gabe here...

I just wanted to chyme in with my two cents.  First, it is true that
none of the finalists used the data values, and I recall Jared and
Chris saying that only a single non-finalist entry actually used the
values.

Independent on whether or not values are useful, how they might be
used, etc... from the perspective of running the contest, it is my
opinion (not speaking for Daniel or anyone else on the organizing
committee) that it is quite difficult to get everyone to agree on a
fair model for using the values.  CBP-1 provides values after some
delay, but even that didn't really feel "correct".  At the end of the
day, the ideal/limit branch predictor should have as much info
available to it as possible, but *when* it is appropriate for each
piece of information to be revealed to the predictor is wide open to
debate (e.g., after a fixed delay, based on the timing of execution of
the producing instructions in a real processor, based on the underlying
dataflow graph?).  Given that the values were practically unused for
CBP-1, my 1-bit predictor says it's not worth the effort to wrangle and
argue over the exact rules for data values (and then modify the
framework and collect all of the traces).

I back up Daniel's decision.

-Gabe


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2008 Google