summaryrefslogtreecommitdiff
path: root/compiler/luci/export/src/Optimize.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/luci/export/src/Optimize.cpp')
-rw-r--r--compiler/luci/export/src/Optimize.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/luci/export/src/Optimize.cpp b/compiler/luci/export/src/Optimize.cpp
index 6fa50b564..036a4a2f9 100644
--- a/compiler/luci/export/src/Optimize.cpp
+++ b/compiler/luci/export/src/Optimize.cpp
@@ -18,6 +18,7 @@
#include "ProgressReporter.h"
#include <luci/Pass/ShapeInferencePass.h>
+#include <luci/Pass/ShapeSignatureInferencePass.h>
#include <luci/Pass/TypeInferencePass.h>
#include <logo/Phase.h>
@@ -34,6 +35,7 @@ void optimize(loco::Graph *g)
// prepare type and shape before optimization
phase.emplace_back(std::make_unique<TypeInferencePass>());
phase.emplace_back(std::make_unique<ShapeInferencePass>());
+ phase.emplace_back(std::make_unique<ShapeSignatureInferencePass>());
// TODO add more optimization passes (with a knob)
}