Home
last modified time | relevance | path

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

/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
Drx-lift.hpp55 typedef rxu::decay_t<Operator> operator_type; typedef
65 typedef typename traits::operator_type operator_type; typedef
67 operator_type chain;
69 lift_operator(source_operator_type s, operator_type op) in lift_operator()
86 typedef rxu::decay_t<Operator> operator_type; typedef in rxcpp::operators::detail::lift_factory
87 operator_type chain;
89 lift_factory(operator_type op) : chain(std::move(op)) {} in lift_factory()
/external/tensorflow/tensorflow/lite/schema/
Dupgrade_schema.py231 def RemapOperatorType(operator_type): argument
248 return (old_to_new[operator_type]
249 if operator_type in old_to_new else operator_type)
/external/tensorflow/tensorflow/lite/toco/graph_transformations/
Dgroup_bidirectional_sequence_ops.cc84 OperatorType operator_type, in FindUnidirectionalSequenceOp() argument
93 while (op_it->type == operator_type) { in FindUnidirectionalSequenceOp()
321 OperatorType operator_type, const string& input_array_name, in RewireBidirectionalSequenceSequenceOpsConnections() argument
325 switch (operator_type) { in RewireBidirectionalSequenceSequenceOpsConnections()
410 OperatorType operator_type, in GroupDynamicSequenceOps() argument
435 if (operator_type == OperatorType::kBidirectionalSequenceLstm) { in GroupDynamicSequenceOps()
465 operator_type, current_input, bidirectional_sequence_ops, &op_it, model); in GroupDynamicSequenceOps()
/external/python/cpython2/Python/
DPython-ast.c305 static PyTypeObject *operator_type; variable
836 operator_type = make_type("operator", &AST_type, NULL, 0); in init_types()
837 if (!operator_type) return 0; in init_types()
838 if (!add_attributes(operator_type, NULL, 0)) return 0; in init_types()
839 Add_type = make_type("Add", operator_type, NULL, 0); in init_types()
843 Sub_type = make_type("Sub", operator_type, NULL, 0); in init_types()
847 Mult_type = make_type("Mult", operator_type, NULL, 0); in init_types()
851 Div_type = make_type("Div", operator_type, NULL, 0); in init_types()
855 Mod_type = make_type("Mod", operator_type, NULL, 0); in init_types()
859 Pow_type = make_type("Pow", operator_type, NULL, 0); in init_types()
[all …]
/external/python/cpython3/Python/
DPython-ast.c393 static PyTypeObject *operator_type; variable
1023 operator_type = make_type("operator", &AST_type, NULL, 0); in init_types()
1024 if (!operator_type) return 0; in init_types()
1025 if (!add_attributes(operator_type, NULL, 0)) return 0; in init_types()
1026 Add_type = make_type("Add", operator_type, NULL, 0); in init_types()
1030 Sub_type = make_type("Sub", operator_type, NULL, 0); in init_types()
1034 Mult_type = make_type("Mult", operator_type, NULL, 0); in init_types()
1038 MatMult_type = make_type("MatMult", operator_type, NULL, 0); in init_types()
1042 Div_type = make_type("Div", operator_type, NULL, 0); in init_types()
1046 Mod_type = make_type("Mod", operator_type, NULL, 0); in init_types()
[all …]