From b7b2dfaa8d521d568f50e2f926afe1e492598c75 Mon Sep 17 00:00:00 2001 From: Chi_Liu Date: Thu, 23 Jun 2022 16:40:11 -0700 Subject: [PATCH] Fix shark_importer.py iree_utils import bug (#156) --- shark/shark_importer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shark/shark_importer.py b/shark/shark_importer.py index 71bb588b5ca5b..9650117a0c17b 100644 --- a/shark/shark_importer.py +++ b/shark/shark_importer.py @@ -11,7 +11,7 @@ import urllib.request from shark.shark_inference import SharkInference import iree.compiler.tflite as ireec_tflite -from shark.iree_utils import IREE_TARGET_MAP +from shark.iree_utils._common import IREE_TARGET_MAP class SharkImporter: