Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cacti/powergating.cc
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ Sleep_tx::Sleep_tx(

}

double Sleep_tx::compute_penalty()
void Sleep_tx::compute_penalty()
{
//V_delta = VDD - VCCmin nothing to do with threshold of sleep tx. Although it might be OK to use sleep tx to control the V_delta
double c_load;
Expand Down
2 changes: 1 addition & 1 deletion cacti/powergating.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class Sleep_tx : public Component


// void compute_area();
double compute_penalty(); // return outrisetime
void compute_penalty(); // return outrisetime

void leakage_feedback(double temperature){};
~Sleep_tx(){};
Expand Down