[locoex/customop] Dialect for Customop (#4209)
author윤현식/On-Device Lab(SR)/Principal Engineer/삼성전자 <hyunsik.yoon@samsung.com>
Mon, 15 Jul 2019 01:21:53 +0000 (10:21 +0900)
committer박종현/On-Device Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Mon, 15 Jul 2019 01:21:53 +0000 (10:21 +0900)
* [locoex/customop] Dialect for Customop

This adds Dialects declaration for custom op.

Signed-off-by: Hyun Sik Yoon <hyunsik.yoon@samsung.com>
* remove 'customop' dir and milestone. change class name.

contrib/locoex-customop/include/locoex/COpDialect.h [new file with mode: 0644]
contrib/locoex-customop/src/COpDialect.cpp [new file with mode: 0644]
contrib/locoex-customop/src/COpDialect.test.cpp [new file with mode: 0644]

diff --git a/contrib/locoex-customop/include/locoex/COpDialect.h b/contrib/locoex-customop/include/locoex/COpDialect.h
new file mode 100644 (file)
index 0000000..86ca5a7
--- /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.
+ */
+
+#ifndef __LOCOEX_COPDIALECT_H__
+#define __LOCOEX_COPDIALECT_H__
+
+#include <loco/IR/Dialect.h>
+
+namespace locoex
+{
+
+/**
+ * @brief A singleton for locoex custom op Dialect
+ */
+class COpDialect final : public loco::Dialect
+{
+private:
+  COpDialect() = default;
+
+public:
+  COpDialect(const Dialect &) = delete;
+  COpDialect(Dialect &&) = delete;
+
+public:
+  static loco::Dialect *get(void);
+};
+
+} // namespace locoex
+
+#endif // __LOCOEX_COPDIALECT_H__
diff --git a/contrib/locoex-customop/src/COpDialect.cpp b/contrib/locoex-customop/src/COpDialect.cpp
new file mode 100644 (file)
index 0000000..46b7f8d
--- /dev/null
@@ -0,0 +1,28 @@
+/*
+ * 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 "locoex/COpDialect.h"
+
+namespace locoex
+{
+
+loco::Dialect *COpDialect::get(void)
+{
+  static COpDialect d;
+  return &d;
+}
+
+} // namespace locoex
diff --git a/contrib/locoex-customop/src/COpDialect.test.cpp b/contrib/locoex-customop/src/COpDialect.test.cpp
new file mode 100644 (file)
index 0000000..b00bf21
--- /dev/null
@@ -0,0 +1,29 @@
+/*
+ * 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 "locoex/COpDialect.h"
+
+#include <gtest/gtest.h>
+
+TEST(COpDialectTest, get)
+{
+  auto d = locoex::COpDialect::get();
+
+  // get() SHOULD return a valid(non-null) pointer
+  ASSERT_NE(d, nullptr);
+  // The return value SHOULD be stable across multiple invocations
+  ASSERT_EQ(d, locoex::COpDialect::get());
+}