From: 윤현식/On-Device Lab(SR)/Principal Engineer/삼성전자 Date: Mon, 15 Jul 2019 01:21:53 +0000 (+0900) Subject: [locoex/customop] Dialect for Customop (#4209) X-Git-Tag: nncc_backup~89 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=75359efeaed11e675b0b47848e50d370d6d9a4c1;p=platform%2Fcore%2Fml%2Fnnfw.git [locoex/customop] Dialect for Customop (#4209) * [locoex/customop] Dialect for Customop This adds Dialects declaration for custom op. Signed-off-by: Hyun Sik Yoon * remove 'customop' dir and milestone. change class name. --- diff --git a/contrib/locoex-customop/include/locoex/COpDialect.h b/contrib/locoex-customop/include/locoex/COpDialect.h new file mode 100644 index 0000000..86ca5a7 --- /dev/null +++ b/contrib/locoex-customop/include/locoex/COpDialect.h @@ -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 + +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 index 0000000..46b7f8d --- /dev/null +++ b/contrib/locoex-customop/src/COpDialect.cpp @@ -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 index 0000000..b00bf21 --- /dev/null +++ b/contrib/locoex-customop/src/COpDialect.test.cpp @@ -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 + +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()); +}