summaryrefslogtreecommitdiff
path: root/inference-engine/thirdparty/clDNN/src/include/border_inst.h
diff options
context:
space:
mode:
Diffstat (limited to 'inference-engine/thirdparty/clDNN/src/include/border_inst.h')
-rw-r--r--inference-engine/thirdparty/clDNN/src/include/border_inst.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/inference-engine/thirdparty/clDNN/src/include/border_inst.h b/inference-engine/thirdparty/clDNN/src/include/border_inst.h
new file mode 100644
index 000000000..ff3b28b2a
--- /dev/null
+++ b/inference-engine/thirdparty/clDNN/src/include/border_inst.h
@@ -0,0 +1,53 @@
+// Copyright (c) 2018 Intel Corporation
+//
+// 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.
+
+///////////////////////////////////////////////////////////////////////////////////////////////////
+#pragma once
+
+#include <api/CPP/border.hpp>
+
+#include "primitive_inst.h"
+
+
+namespace cldnn
+{
+template <>
+struct typed_program_node<border> : typed_program_node_base<border>
+{
+private:
+ using parent = typed_program_node_base<border>;
+
+
+public:
+ using parent::parent;
+
+ program_node& input() const { return get_dependency(0); }
+};
+
+using border_node = typed_program_node<border>;
+
+
+template <>
+class typed_primitive_inst<border> : public typed_primitive_inst_base<border>
+{
+ using parent = typed_primitive_inst_base<border>;
+
+public:
+ static layout calc_output_layout(border_node const& node);
+ static std::string to_string(border_node const& node);
+ typed_primitive_inst(network_impl& network, border_node const& node);
+};
+
+using border_inst = typed_primitive_inst<border>;
+}