summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author박종현/On-Device Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>2019-09-18 09:00:57 +0900
committerGitHub Enterprise <noreply-CODE@samsung.com>2019-09-18 09:00:57 +0900
commit6950ebe46806dd25843e3947635ed313279ddff2 (patch)
tree4c03088e260d6ba331c4c5207799b506c2281463
parent995a7e45859444ab7b3d3af17d37603682fa75e0 (diff)
downloadnnfw-6950ebe46806dd25843e3947635ed313279ddff2.tar.gz
nnfw-6950ebe46806dd25843e3947635ed313279ddff2.tar.bz2
nnfw-6950ebe46806dd25843e3947635ed313279ddff2.zip
[moco-tf] Use tf as prefix (#7489)
Let's use "tf" prefix instead of "TF" to be compatiable with canonical prefix. Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
-rw-r--r--compiler/moco-tf/src/TFFormattedGraph.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/moco-tf/src/TFFormattedGraph.cpp b/compiler/moco-tf/src/TFFormattedGraph.cpp
index cc408a989..08fad7a50 100644
--- a/compiler/moco-tf/src/TFFormattedGraph.cpp
+++ b/compiler/moco-tf/src/TFFormattedGraph.cpp
@@ -33,7 +33,7 @@ namespace
std::string opname(uint32_t opnum)
{
- static std::string prefix{"TF."};
+ static std::string prefix{"tf."};
switch (static_cast<moco::tf::TFOpcode>(opnum))
{