You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of now, the GRANITE model is basic-block oriented (resp. trace-oriented), i.e. it doesn't use any information about code that was executed before or after the basic block. We believe that adding such information may provide additional context to improve the prediction of the precisions.
The GRANITE model can be extended to cover such context by:
adding code graph from the preceding basic block (in execution order) and the following basic block,
modifying the predictor to compute throughput only from the instructions in the input basic block.
This modification will also require an extension to the data collection methodology to collect basic blocks and their throughput with the execution context.
The text was updated successfully, but these errors were encountered:
For potential pretraining, we could use existing reciprocal throughput measurements as we know that the context is just the block itself up to whatever reasonable context limits we have.
As of now, the GRANITE model is basic-block oriented (resp. trace-oriented), i.e. it doesn't use any information about code that was executed before or after the basic block. We believe that adding such information may provide additional context to improve the prediction of the precisions.
The GRANITE model can be extended to cover such context by:
This modification will also require an extension to the data collection methodology to collect basic blocks and their throughput with the execution context.
The text was updated successfully, but these errors were encountered: