summaryrefslogtreecommitdiff
path: root/include/support/tflite/kernels/register.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/support/tflite/kernels/register.h')
-rw-r--r--include/support/tflite/kernels/register.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/include/support/tflite/kernels/register.h b/include/support/tflite/kernels/register.h
new file mode 100644
index 000000000..43a4c1a23
--- /dev/null
+++ b/include/support/tflite/kernels/register.h
@@ -0,0 +1,40 @@
+/* Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
+ Copyright 2017 The TensorFlow Authors. 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.
+==============================================================================*/
+
+// NOTE This header is derived from the following file (in TensorFlow)
+// 'externals/tensorflow/tensorflow/contrib/lite/kernels/register.h'
+#ifndef __NNFW_SUPPORT_TFLITE_KERNELS_REGISTER_H__
+#define __NNFW_SUPPORT_TFLITE_KERNELS_REGISTER_H__
+
+#include <unordered_map>
+#include "tensorflow/contrib/lite/context.h"
+#include "tensorflow/contrib/lite/model.h"
+
+// TODO Use namespace nnfw
+namespace tflite {
+namespace ops {
+namespace builtin {
+
+class BuiltinOpResolver : public MutableOpResolver {
+ public:
+ BuiltinOpResolver();
+};
+
+} // namespace builtin
+} // namespace ops
+} // namespace tflite
+
+#endif // __NNFW_SUPPORT_TFLITE_KERNELS_REGISTER_H__