From: 윤현식/On-Device Lab(SR)/Principal Engineer/삼성전자 Date: Thu, 5 Sep 2019 09:07:15 +0000 (+0900) Subject: [exo-tflite] Prepare slots for template initialization (#7227) X-Git-Tag: accepted/tizen/unified/20190911.111615~91 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7ed9c82fdaa453081518438286465896b799b779;p=platform%2Fcore%2Fml%2Fnnfw.git [exo-tflite] Prepare slots for template initialization (#7227) This adds slots for template initialization in CanonicalNodeConverter, which prevents code conflict. Signed-off-by: Hyun Sik Yoon --- diff --git a/compiler/exo-tflite/src/Conversion/CanonicalNodeConverter.cpp b/compiler/exo-tflite/src/Conversion/CanonicalNodeConverter.cpp index 6b6db46..78475d9 100644 --- a/compiler/exo-tflite/src/Conversion/CanonicalNodeConverter.cpp +++ b/compiler/exo-tflite/src/Conversion/CanonicalNodeConverter.cpp @@ -45,6 +45,22 @@ bool CanonicalNodeConverter::run(loco::Graph *graph) } // template instantiation +// TODO TFLAdd +// TODO TFLAveragePool2D +// TODO TFLConcatenation +// TODO TFLConv2D +// TODO TFLDepthwiseConv2D +// TODO TFLDiv +// TODO TFLMaxPool2D +// TODO TFLMul +// TODO TFLNop template bool CanonicalNodeConverter::run(loco::Graph *graph); +// TODO TFLRelu6 +// TODO TFLReshape +// TODO TFLSoftmax +// TODO TFLSqrt +// TODO TFLSub +// TODO TFLTanh +// TODO TFLTranspose } // namespace exo