Prevent various debug prints by default
This commit is contained in:
@@ -1165,7 +1165,6 @@ module mkFetchStage(FetchStage);
|
||||
if (iType == Br) begin
|
||||
// Train the direction predictor for all branches
|
||||
dirPred.update(taken, trainInfo.dir, mispred);
|
||||
$display("Branch train PC: %x, taken: %x, mispred: %x", getAddr(pc), taken, mispred);
|
||||
end
|
||||
// train next addr pred when mispred
|
||||
if(mispred) begin
|
||||
|
||||
@@ -271,7 +271,7 @@ interface MemExePipeline;
|
||||
endinterface
|
||||
|
||||
module mkMemExePipeline#(MemExeInput inIfc)(MemExePipeline);
|
||||
Bool verbose = True;
|
||||
Bool verbose = False;
|
||||
|
||||
// we change cache request in case of single core, becaues our MSI protocol
|
||||
// is not good with single core
|
||||
|
||||
Reference in New Issue
Block a user