summaryrefslogtreecommitdiff
path: root/onert-micro/luci-interpreter/src/loader/nodes/Square.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'onert-micro/luci-interpreter/src/loader/nodes/Square.cpp')
-rw-r--r--onert-micro/luci-interpreter/src/loader/nodes/Square.cpp35
1 files changed, 0 insertions, 35 deletions
diff --git a/onert-micro/luci-interpreter/src/loader/nodes/Square.cpp b/onert-micro/luci-interpreter/src/loader/nodes/Square.cpp
deleted file mode 100644
index 1afc6ccde..000000000
--- a/onert-micro/luci-interpreter/src/loader/nodes/Square.cpp
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (c) 2021 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 "Builders.h"
-
-#include "kernels/Square.h"
-
-namespace luci_interpreter
-{
-
-std::unique_ptr<Kernel> build_kernel_CircleSquare(std::vector<const Tensor *> &&inputs,
- std::vector<Tensor *> &&outputs,
- const uint32_t op_index, KernelBuilder &builder)
-{
- assert(inputs.size() == 1);
- const Tensor *input = inputs.at(0);
- Tensor *output = outputs.at(0);
-
- return std::make_unique<kernels::Square>(input, output);
-}
-
-} // namespace luci_interpreter