summaryrefslogtreecommitdiff
path: root/runtimes/pure_arm_compute/src/internal/layers/SimplePadLayer.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtimes/pure_arm_compute/src/internal/layers/SimplePadLayer.h')
-rw-r--r--runtimes/pure_arm_compute/src/internal/layers/SimplePadLayer.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/runtimes/pure_arm_compute/src/internal/layers/SimplePadLayer.h b/runtimes/pure_arm_compute/src/internal/layers/SimplePadLayer.h
deleted file mode 100644
index 8cb6659ce..000000000
--- a/runtimes/pure_arm_compute/src/internal/layers/SimplePadLayer.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Copyright (c) 2018 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 __SIMPLE_PAD_LAYER_H__
-#define __SIMPLE_PAD_LAYER_H__
-
-#include "internal/arm_compute.h"
-#include "internal/arm_compute/Cast.h"
-
-class SimplePadLayer : public ::arm_compute::IFunction
-{
-public:
- SimplePadLayer(void) : _input(nullptr), _output(nullptr), _padding_size(nullptr), _axises{}
- {
- // DO NOTHING
- }
-
- void configure(::arm_compute::ITensor *input, ::arm_compute::ITensor *output,
- ::arm_compute::ITensor *padding_size,
- const ::arm_compute::Coordinates &axises = getARMComputeAxises(4));
-
- void run(void) override;
-
-private:
- ::arm_compute::ITensor *_input;
- ::arm_compute::ITensor *_output;
- ::arm_compute::ITensor *_padding_size;
- ::arm_compute::Coordinates _axises;
-};
-
-#endif // __SIMPLE_PAD_LAYER_H__