summaryrefslogtreecommitdiff
path: root/compiler/exo-tflite/src/TFLExporterImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/exo-tflite/src/TFLExporterImpl.cpp')
-rw-r--r--compiler/exo-tflite/src/TFLExporterImpl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/exo-tflite/src/TFLExporterImpl.cpp b/compiler/exo-tflite/src/TFLExporterImpl.cpp
index f37b9f70e..ebe98cae5 100644
--- a/compiler/exo-tflite/src/TFLExporterImpl.cpp
+++ b/compiler/exo-tflite/src/TFLExporterImpl.cpp
@@ -106,9 +106,9 @@ void TFLExporter::Impl::exportGraph(loco::Graph *graph)
{
LOGGER(l);
- INFO(l) << "Knob::EnableTFLDialect is " << (get_knob<Knob::EnableTFLDialect>() ? "set" : "unset");
+ INFO(l) << "Knob::EnableTFLDialect is " << (get<Knob::EnableTFLDialect>() ? "set" : "unset");
- if (get_knob<Knob::EnableTFLDialect>()) // guard for backward compatibility
+ if (get<Knob::EnableTFLDialect>()) // guard for backward compatibility
{
convert_to_TFLNodes(graph);
}