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