2021-04-17 10:40:06 +08:00
|
|
|
/**
|
|
|
|
* Copyright 2021 Huawei Technologies Co., Ltd
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2022-08-10 15:51:35 +08:00
|
|
|
#ifndef MINDSPORE_LITE_INCLUDE_KERNEL_H
|
|
|
|
#define MINDSPORE_LITE_INCLUDE_KERNEL_H
|
2021-04-17 10:40:06 +08:00
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
2021-11-04 22:09:55 +08:00
|
|
|
#include <map>
|
2021-06-02 17:21:38 +08:00
|
|
|
#include "schema/model_generated.h"
|
2021-07-12 10:34:22 +08:00
|
|
|
#include "include/api/types.h"
|
|
|
|
#include "include/api/context.h"
|
2022-08-10 15:51:35 +08:00
|
|
|
#include "include/api/kernel_api.h"
|
2021-04-17 10:40:06 +08:00
|
|
|
|
|
|
|
namespace mindspore::kernel {
|
2022-08-10 15:51:35 +08:00
|
|
|
class MS_API Kernel : public IKernel<schema::Primitive> {
|
2021-04-17 10:40:06 +08:00
|
|
|
public:
|
|
|
|
Kernel() = default;
|
2021-07-12 10:34:22 +08:00
|
|
|
Kernel(const std::vector<mindspore::MSTensor> &inputs, const std::vector<mindspore::MSTensor> &outputs,
|
|
|
|
const schema::Primitive *primitive, const mindspore::Context *ctx)
|
2022-08-10 15:51:35 +08:00
|
|
|
: IKernel<schema::Primitive>(inputs, outputs, primitive, ctx) {
|
2021-11-04 22:09:55 +08:00
|
|
|
Initialize();
|
2021-04-17 10:40:06 +08:00
|
|
|
}
|
|
|
|
virtual ~Kernel() = default;
|
2021-08-22 22:16:37 +08:00
|
|
|
/// \brief obtain kernel's type.
|
|
|
|
///
|
|
|
|
/// \return kernel's type.
|
2021-07-10 10:35:19 +08:00
|
|
|
virtual schema::PrimitiveType type() const { return type_; }
|
2022-02-23 17:34:36 +08:00
|
|
|
/// \brief obtain kernel's quant type.
|
|
|
|
///
|
|
|
|
/// \return kernel's quant type.
|
|
|
|
virtual schema::QuantType quant_type() const { return quant_type_; }
|
2021-08-22 22:16:37 +08:00
|
|
|
/// \brief obtain the primitive of kernel generated by flatbuffers.
|
2021-11-04 22:09:55 +08:00
|
|
|
protected:
|
2022-08-10 15:51:35 +08:00
|
|
|
void Initialize();
|
2021-11-04 22:09:55 +08:00
|
|
|
|
2022-08-10 15:51:35 +08:00
|
|
|
protected:
|
2021-04-17 10:40:06 +08:00
|
|
|
schema::PrimitiveType type_ = schema::PrimitiveType_NONE;
|
2022-02-23 17:34:36 +08:00
|
|
|
schema::QuantType quant_type_ = schema::QuantType_QUANT_NONE;
|
2021-04-17 10:40:06 +08:00
|
|
|
};
|
|
|
|
} // namespace mindspore::kernel
|
|
|
|
|
2022-08-10 15:51:35 +08:00
|
|
|
#endif // MINDSPORE_LITE_INCLUDE_KERNEL_H
|