[logo] Introduce Passes header (#6945)
author박세희/On-Device Lab(SR)/Principal Engineer/삼성전자 <saehie.park@samsung.com>
Tue, 27 Aug 2019 06:03:41 +0000 (15:03 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Tue, 27 Aug 2019 06:03:41 +0000 (15:03 +0900)
* [logo] Introduce Passes header

This will introduce Passes header that includes all Pass header files

Signed-off-by: SaeHie Park <saehie.park@samsung.com>
* sort and add comment

compiler/logo/include/logo/Passes.h [new file with mode: 0644]

diff --git a/compiler/logo/include/logo/Passes.h b/compiler/logo/include/logo/Passes.h
new file mode 100644 (file)
index 0000000..636251e
--- /dev/null
@@ -0,0 +1,30 @@
+/*
+ * 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 __LOGO_PASSES_H__
+#define __LOGO_PASSES_H__
+
+// Please keep this in alphabetical order
+
+#include <logo/ConstantFoldingPass.h>
+#include <logo/RemoveDeadNodePass.h>
+#include <logo/RemoveForwardNodePass.h>
+#include <logo/ReorderDecodePass.h>
+#include <logo/ResolveDuplicateReshapePass.h>
+#include <logo/ResolveRedundantReshapePass.h>
+#include <logo/SimplifyDomainConversionPass.h>
+
+#endif // __LOGO_PASSES_H__