From e4c327696c077e44b6fff655ef154cc090712d49 Mon Sep 17 00:00:00 2001 From: Anshuman Mohan Date: Mon, 24 Jul 2023 13:45:10 -0400 Subject: [PATCH] Move util to correct spot, as per #1630 --- calyx-py/{test/correctness => calyx}/builder_util.py | 0 calyx-py/test/correctness/fifo.py | 2 +- calyx-py/test/correctness/pifo.py | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename calyx-py/{test/correctness => calyx}/builder_util.py (100%) diff --git a/calyx-py/test/correctness/builder_util.py b/calyx-py/calyx/builder_util.py similarity index 100% rename from calyx-py/test/correctness/builder_util.py rename to calyx-py/calyx/builder_util.py diff --git a/calyx-py/test/correctness/fifo.py b/calyx-py/test/correctness/fifo.py index 4a70428cf1..df9233b6bd 100644 --- a/calyx-py/test/correctness/fifo.py +++ b/calyx-py/test/correctness/fifo.py @@ -1,5 +1,5 @@ # pylint: disable=import-error -import builder_util as util +import calyx.builder_util as util import calyx.builder as cb diff --git a/calyx-py/test/correctness/pifo.py b/calyx-py/test/correctness/pifo.py index e9a7e205bc..e8c7e1b71e 100644 --- a/calyx-py/test/correctness/pifo.py +++ b/calyx-py/test/correctness/pifo.py @@ -1,6 +1,6 @@ # pylint: disable=import-error import fifo -import builder_util as util +import calyx.builder_util as util import calyx.builder as cb