Fixed issue with static inputs causing errors. Added corners to linear regression inputs.

This commit is contained in:
Hunter Nichols
2020-12-17 14:54:43 -08:00
parent b760656572
commit 240dc784af
2 changed files with 14 additions and 14 deletions
+4 -1
View File
@@ -40,7 +40,10 @@ class linear_regression(simulation):
model_inputs = [log_num_words,
OPTS.word_size,
OPTS.words_per_row,
self.sram.width * self.sram.height]
self.sram.width * self.sram.height,
process_transform[self.process],
self.vdd_voltage,
self.temperature]
# List returned with value order being delay, power, leakage, slew
# FIXME: make order less hard coded