[moco/tf] Introduce TFOptimizier (#4049)
author박세희/On-Device Lab(SR)/Principal Engineer/삼성전자 <saehie.park@samsung.com>
Tue, 2 Jul 2019 07:45:38 +0000 (16:45 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Tue, 2 Jul 2019 07:45:38 +0000 (16:45 +0900)
This will introduce TFOptimizier to provide transformations with TensorFlow Dialects

Signed-off-by: SaeHie Park <saehie.park@samsung.com>
contrib/moco-tf/src/TFOptimizer.cpp [new file with mode: 0644]
contrib/moco-tf/src/TFOptimizer.h [new file with mode: 0644]
contrib/moco-tf/src/TFOptimizer.test.cpp [new file with mode: 0644]

diff --git a/contrib/moco-tf/src/TFOptimizer.cpp b/contrib/moco-tf/src/TFOptimizer.cpp
new file mode 100644 (file)
index 0000000..f1380d3
--- /dev/null
@@ -0,0 +1,43 @@
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd. All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "TFOptimizer.h"
+
+#include "Knob.h"
+#include "Phase.h"
+#include "Transforms.h"
+
+#include <stdex/Memory.h>
+
+namespace moco
+{
+namespace tf
+{
+
+void TFOptimizer::optimize(loco::Graph *g) const
+{
+  moco::tf::Phase phase;
+
+  /* TRANSFORM DECLARATION BEGIN */
+
+  /* TRANSFORM DECLARATION END */
+
+  moco::tf::PhaseRunner<moco::tf::PhaseStrategy::Saturate> phase_runner{g};
+  phase_runner.run(phase);
+}
+
+} // namespace tf
+} // namespace moco
diff --git a/contrib/moco-tf/src/TFOptimizer.h b/contrib/moco-tf/src/TFOptimizer.h
new file mode 100644 (file)
index 0000000..69ab74d
--- /dev/null
@@ -0,0 +1,36 @@
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd. All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef __TF_OPTIMIZER_H__
+#define __TF_OPTIMIZER_H__
+
+#include <loco.h>
+
+namespace moco
+{
+namespace tf
+{
+
+class TFOptimizer final
+{
+public:
+  void optimize(loco::Graph *) const;
+};
+
+} // namespace tf
+} // namespace moco
+
+#endif // __TF_OPTIMIZER_H__
diff --git a/contrib/moco-tf/src/TFOptimizer.test.cpp b/contrib/moco-tf/src/TFOptimizer.test.cpp
new file mode 100644 (file)
index 0000000..26348f6
--- /dev/null
@@ -0,0 +1,33 @@
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd. All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "TFOptimizer.h"
+
+#include <loco.h>
+
+#include <gtest/gtest.h>
+
+// TFOptimizer SHOULD NOT crash even though a given graph is empty
+TEST(TFOptimizer, empty_graph)
+{
+  moco::tf::TFOptimizer tfo;
+
+  loco::Graph g;
+
+  tfo.optimize(&g);
+
+  SUCCEED();
+}