mindspore/include/api/kernel.h

57 lines
1.9 KiB
C
Raw Normal View History

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>
#include <map>
#include "schema/model_generated.h"
#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;
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) {
Initialize();
2021-04-17 10:40:06 +08:00
}
virtual ~Kernel() = default;
/// \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_; }
/// \brief obtain the primitive of kernel generated by flatbuffers.
protected:
2022-08-10 15:51:35 +08:00
void Initialize();
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