Home
last modified time | relevance | path

Searched refs:OpImplyType (Results 1 – 11 of 11) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/oplib/
Doplib.h34 static std::shared_ptr<OpInfo> FindOp(const std::string &op_name, OpImplyType imply_type,
42 …static bool DecodeOpInfo(const nlohmann::json &obj, OpImplyType imply_type, const std::string &imp…
43 …static bool DecodeAttr(const nlohmann::json &obj, OpImplyType imply_type, const std::shared_ptr<Op…
48 static bool DecodeInputOutput(const nlohmann::json &obj, OpImplyType imply_type, OpIOType io_type,
Doplib.cc69 static std::string ImplTypeToStr(OpImplyType impl_type) { in ImplTypeToStr()
88 OpImplyType imply_type = kTBE; in RegOp()
91 OpImplyType imply_type = kAKG; in RegOp()
94 OpImplyType imply_type = kAICPU; in RegOp()
97 OpImplyType imply_type = kCPU; in RegOp()
202 bool OpLib::DecodeOpInfo(const nlohmann::json &obj, const mindspore::kernel::OpImplyType imply_type, in DecodeOpInfo()
254 bool OpLib::DecodeAttr(const nlohmann::json &obj, const OpImplyType imply_type, in DecodeAttr()
300 bool OpLib::DecodeInputOutput(const nlohmann::json &obj, const OpImplyType imply_type, const OpIOTy… in DecodeInputOutput()
353 std::shared_ptr<OpInfo> OpLib::FindOp(const std::string &op_name, OpImplyType imply_type, bool is_d… in FindOp()
Dopinfo.h28 enum OpImplyType { kAKG = 0, kTBE = 1, kAICPU = 2, kCPU }; enum
127 OpImplyType imply_type() const { return imply_type_; } in imply_type()
145 void set_imply_type(const OpImplyType imply_type) { imply_type_ = imply_type; } in set_imply_type()
174 OpImplyType imply_type_ = kTBE;
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/akg/
Dakg_kernel_metadata.cc31 auto op_info_ptr = mindspore::kernel::OpLib::FindOp(op_name, OpImplyType::kAKG); in AkgMetadataInfo()
Dakg_kernel_json_generator.cc53 op_info->set_imply_type(OpImplyType::kAKG); in Run()
454 return mindspore::kernel::OpLib::FindOp(AnfAlgo::GetCNodeName(anf_node), OpImplyType::kAKG); in ExtractOpInfo()
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/aicpu/
Daicpu_kernel_metadata.cc35 auto op_info_ptr = mindspore::kernel::OpLib::FindOp(op_name, OpImplyType::kAICPU); in AicpuMetadataInfo()
Daicpu_kernel_build.cc155 auto op_info_ptr = mindspore::kernel::OpLib::FindOp(op_name, OpImplyType::kAICPU); in SetNodeAttr()
/third_party/mindspore/mindspore/ccsrc/runtime/device/cpu/
Dkernel_select_cpu.cc255 const auto &op_info = kernel::OpLib::FindOp(op_name, kernel::OpImplyType::kCPU); in IsDynamicParamKernel()
321 auto op_info_ptr = mindspore::kernel::OpLib::FindOp(op_name, kernel::OpImplyType::kCPU); in SetKernelInfo()
/third_party/mindspore/mindspore/ccsrc/runtime/device/gpu/
Dkernel_info_setter.cc81 auto op_info_ptr = mindspore::kernel::OpLib::FindOp(op_name, kernel::OpImplyType::kAKG); in SupportedTypeList()
121 auto op_info_ptr = mindspore::kernel::OpLib::FindOp(op_name, kernel::OpImplyType::kAKG); in SelectAkgKernel()
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/
Dcpu_kernel_factory.cc128 auto op_info_ptr = mindspore::kernel::OpLib::FindOp(kernel_name, kernel::OpImplyType::kCPU); in CPUKernelAttrCheck()
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/tbe/
Dtbe_dynaminc_shape_util.cc371 return mindspore::kernel::OpLib::FindOp(op_name, OpImplyType::kTBE, is_dynamic_shape); in FindOp()