From 5ad86538d49c4d2201c8e6d01c24758fde15b781 Mon Sep 17 00:00:00 2001 From: Hunter Nichols Date: Sun, 25 Jul 2021 20:21:54 -0700 Subject: [PATCH] Renamed graph_util to timing_graph to match the module name --- compiler/base/{graph_util.py => timing_graph.py} | 0 compiler/characterizer/simulation.py | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename compiler/base/{graph_util.py => timing_graph.py} (100%) diff --git a/compiler/base/graph_util.py b/compiler/base/timing_graph.py similarity index 100% rename from compiler/base/graph_util.py rename to compiler/base/timing_graph.py diff --git a/compiler/characterizer/simulation.py b/compiler/characterizer/simulation.py index 2f319b93..4df83d96 100644 --- a/compiler/characterizer/simulation.py +++ b/compiler/characterizer/simulation.py @@ -10,7 +10,7 @@ import math import tech from globals import OPTS from sram_factory import factory -import graph_util +import timing_graph class simulation(): @@ -541,7 +541,7 @@ class simulation(): self.sram.graph_exclude_column_mux(self.bitline_column, port) # Generate new graph every analysis as edges might change depending on test bit - self.graph = graph_util.timing_graph() + self.graph = timing_graph.timing_graph() self.sram_instance_name = "X{}".format(self.sram.name) self.sram.build_graph(self.graph, self.sram_instance_name, self.pins)