コード例 #1
0
 def get_delays_to_wl(self):
     """Get the delay (in delay units) of the clk to a wordline in the bitcell array"""
     debug.check(self.sram.all_mods_except_control_done, "Cannot calculate sense amp enable delay unless all module have been added.")
     self.wl_stage_efforts = self.determine_wordline_stage_efforts()
     clk_to_wl_rise,clk_to_wl_fall = logical_effort.calculate_relative_rise_fall_delays(self.wl_stage_efforts, self.parasitic_inv_delay)
     total_delay = clk_to_wl_rise + clk_to_wl_fall 
     debug.info(1, "Clock to wl delay is rise={:.3f}, fall={:.3f}, total={:.3f} in delay units".format(clk_to_wl_rise, clk_to_wl_fall,total_delay))
     return clk_to_wl_rise,clk_to_wl_fall 
コード例 #2
0
 def get_delays_to_sen(self):
     """Get the delay (in delay units) of the clk to a sense amp enable. 
        This does not incorporate the delay of the replica bitline.
     """
     debug.check(self.sram.all_mods_except_control_done, "Cannot calculate sense amp enable delay unless all module have been added.")
     self.sen_stage_efforts = self.determine_sa_enable_stage_efforts()
     clk_to_sen_rise, clk_to_sen_fall = logical_effort.calculate_relative_rise_fall_delays(self.sen_stage_efforts, self.parasitic_inv_delay)
     total_delay = clk_to_sen_rise + clk_to_sen_fall 
     debug.info(1, "Clock to s_en delay is rise={:.3f}, fall={:.3f}, total={:.3f} in delay units".format(clk_to_sen_rise, clk_to_sen_fall,total_delay))
     return clk_to_sen_rise, clk_to_sen_fall