From 0701fceb0b390713467b1ebb904834c673002a19 Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Wed, 18 Jul 2018 10:39:29 -0700 Subject: [PATCH] Use sram rather than new meta-sram class in the characterizer for delay --- compiler/characterizer/lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/characterizer/lib.py b/compiler/characterizer/lib.py index 416ab0d8..0c56187d 100644 --- a/compiler/characterizer/lib.py +++ b/compiler/characterizer/lib.py @@ -13,7 +13,7 @@ class lib: def __init__(self, out_dir, sram, sp_file, use_model=OPTS.analytical_delay): self.out_dir = out_dir - self.sram = sram + self.sram = sram.s self.sp_file = sp_file self.use_model = use_model