34 lines
1.2 KiB
C++
34 lines
1.2 KiB
C++
// Copyright (C) 2018-2021 Intel Corporation
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <ie_iextension.h>
|
|
|
|
#include <ngraph/ngraph.hpp>
|
|
|
|
namespace TemplateExtension {
|
|
|
|
//! [cpu_implementation:header]
|
|
class OpImplementation : public InferenceEngine::ILayerExecImpl {
|
|
public:
|
|
explicit OpImplementation(const std::shared_ptr<ngraph::Node>& node);
|
|
InferenceEngine::StatusCode getSupportedConfigurations(std::vector<InferenceEngine::LayerConfig>& conf,
|
|
InferenceEngine::ResponseDesc* resp) noexcept override;
|
|
InferenceEngine::StatusCode init(InferenceEngine::LayerConfig& config,
|
|
InferenceEngine::ResponseDesc* resp) noexcept override;
|
|
InferenceEngine::StatusCode execute(std::vector<InferenceEngine::Blob::Ptr>& inputs,
|
|
std::vector<InferenceEngine::Blob::Ptr>& outputs,
|
|
InferenceEngine::ResponseDesc* resp) noexcept override;
|
|
|
|
private:
|
|
int64_t add;
|
|
ngraph::Shape inShape;
|
|
ngraph::Shape outShape;
|
|
std::string error;
|
|
};
|
|
//! [cpu_implementation:header]
|
|
|
|
} // namespace TemplateExtension
|