Home
last modified time | relevance | path

Searched refs:operator_type (Results 1 – 6 of 6) sorted by relevance

/third_party/mindspore/mindspore/lite/tools/optimizer/parallel/
Doperator_info_register.h59 void RegisterOperatorInfo(schema::PrimitiveType operator_type, TypeId type_id, bool is_depth_wise,
78 OperatorInfoRegister(schema::PrimitiveType operator_type, TypeId type_id, bool is_depth_wise,
84 #define OPERATOR_INFO_REGISTER(operator_type, type_id, is_depth_wise, creator_func) … argument
85 …static OperatorInfoRegister g_name##operator_type##type_id##is_depth_wise##Creator(operator_type, …
Doperator_info_register.cc40 void OperatorInfoFactory::RegisterOperatorInfo(schema::PrimitiveType operator_type, TypeId type_id,… in RegisterOperatorInfo() argument
43 SplitOpKey op_key(operator_type, type_id, is_depth_wise); in RegisterOperatorInfo()
60 OperatorInfoRegister::OperatorInfoRegister(schema::PrimitiveType operator_type, TypeId type_id, boo… in OperatorInfoRegister() argument
62 …OperatorInfoFactory::GeInstance()->RegisterOperatorInfo(operator_type, type_id, is_depth_wise, cre… in OperatorInfoRegister()
/third_party/mindspore/mindspore/lite/micro/coder/opcoders/
Dop_coder_register.h61 int RegistOpCoder(Target target, TypeId data_type, schema::PrimitiveType operator_type,
77 OpCoderRegister(Target target, TypeId data_type, schema::PrimitiveType operator_type,
82 #define REG_OPERATOR_CODER(target, data_type, operator_type, creator_func) \ argument
83 …static OpCoderRegister g_##target##data_type##operator_type##Creator(target, data_type, operator_t…
Dop_coder_register.cc39 …OpCoderFactory::RegistOpCoder(Target target, TypeId data_type, schema::PrimitiveType operator_type, in RegistOpCoder() argument
42 CoderKey key(target, data_type, operator_type); in RegistOpCoder()
65 …oderRegister::OpCoderRegister(Target target, TypeId data_type, schema::PrimitiveType operator_type, in OpCoderRegister() argument
67 OpCoderFactory::GetInstance()->RegistOpCoder(target, data_type, operator_type, creatorFunc); in OpCoderRegister()
/third_party/python/Include/internal/
Dpycore_ast_state.h219 PyObject *operator_type; member
/third_party/python/Python/
DPython-ast.c233 Py_CLEAR(state->operator_type); in _PyAST_Fini()
1495 state->operator_type = make_type(state, "operator", state->AST_type, NULL, in init_types()
1498 if (!state->operator_type) return 0; in init_types()
1499 if (!add_attributes(state, state->operator_type, NULL, 0)) return 0; in init_types()
1500 state->Add_type = make_type(state, "Add", state->operator_type, NULL, 0, in init_types()
1506 state->Sub_type = make_type(state, "Sub", state->operator_type, NULL, 0, in init_types()
1512 state->Mult_type = make_type(state, "Mult", state->operator_type, NULL, 0, in init_types()
1518 state->MatMult_type = make_type(state, "MatMult", state->operator_type, in init_types()
1526 state->Div_type = make_type(state, "Div", state->operator_type, NULL, 0, in init_types()
1532 state->Mod_type = make_type(state, "Mod", state->operator_type, NULL, 0, in init_types()
[all …]