Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / compiler / one-cmds / dummy-driver / src / dummy-onnx-ext.cpp
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2022 Samsung Electronics Co., Ltd. All Rights Reserved
+ * Copyright (c) 2023 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.
  * limitations under the License.
  */
 
-#ifndef __MPQSOLVER_BISECTION_ERROR_APPROXIMATOR_H__
-#define __MPQSOLVER_BISECTION_ERROR_APPROXIMATOR_H__
-
-#include <loco.h>
+/**
+ * dummy-onnx-ext only tests its interface rather than its functionality.
+ *
+ * ./dummy-onnx-ext [options]
+ * one-import-onnx-ext dummy output!!!
+ */
 
-#include <luci/IR/CircleNodeDecl.h>
+#include <iostream>
+#include <fstream>
+#include <string>
 
-namespace mpqsolver
+int main(int argc, char **argv)
 {
-namespace bisection
-{
-
-/**
- * @brief approximate error introduced while quantizing node into Q8
- */
-float approximate(const luci::CircleNode *node);
+  (void)argc;
+  (void)argv;
 
-} // namespace bisection
-} // namespace mpqsolver
+  std::cout << "one-import-onnx-ext dummy output!!!" << std::endl;
 
-#endif // __MPQSOLVER_BISECTION_ERROR_APPROXIMATOR_H__
+  return EXIT_SUCCESS;
+}