/third_party/mindspore/mindspore/core/ir/ |
D | value.h | 37 class MS_CORE_API ValueSequeue : public Value { 39 explicit ValueSequeue(const ValuePtrList &elements) : elements_(elements) { in ValueSequeue() function 48 …ValueSequeue(const std::initializer_list<ValuePtr> &elements) : elements_(elements.begin(), elemen… in ValueSequeue() function 55 ~ValueSequeue() override = default; 56 MS_DECLARE_PARENT(ValueSequeue, Value) in MS_DECLARE_PARENT() argument 63 bool operator==(const ValueSequeue &other) const; 70 using ValueSequeuePtr = std::shared_ptr<ValueSequeue>; 72 class MS_CORE_API ValueTuple : public ValueSequeue { 74 explicit ValueTuple(const std::vector<ValuePtr> &elements) : ValueSequeue(elements) {} in ValueTuple() 75 ValueTuple(const std::initializer_list<ValuePtr> &elements) : ValueSequeue(elements) {} in ValueTuple() [all …]
|
D | value.cc | 27 const ValuePtr ValueSequeue::operator[](const std::size_t &dim) const { in operator []() 34 bool ValueSequeue::erase(size_t idx) { in erase() 147 bool ValueSequeue::operator==(const Value &other) const { in operator ==() 148 if (other.isa<ValueSequeue>()) { in operator ==() 149 auto other_ = static_cast<const ValueSequeue &>(other); in operator ==() 155 bool ValueSequeue::operator==(const ValueSequeue &other) const { in operator ==() 163 std::string ValueSequeue::ToString() const { in ToString() 178 std::string ValueSequeue::DumpText() const { in DumpText()
|
/third_party/mindspore/mindspore/ccsrc/frontend/parallel/ops_info/ |
D | l2_normalize_info.cc | 54 if (iter->second->isa<ValueSequeue>()) { in GetAttrs()
|
D | gather_v2_p_info.cc | 83 if (!ele->isa<ValueSequeue>()) { in GetManualSplitAttr()
|
D | conv2d_info.cc | 38 return std::make_shared<ValueSequeue>(list); in MakeListValue()
|
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/graph_kernel/expanders/ |
D | utils.cc | 94 if (value->isa<ValueSequeue>()) { in GetAxisList()
|
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/graph_kernel/ |
D | axis_normalizer.cc | 54 } else if (axis->isa<ValueSequeue>()) { in Process()
|
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/ascend/ir_fission/ |
D | reduce_min_fission.cc | 125 if (!axis_value->isa<ValueSequeue>()) { in Process()
|
/third_party/mindspore/mindspore/ccsrc/debug/ |
D | anf_ir_utils.cc | 297 ValueSequeuePtr seq = dyn_cast<ValueSequeue>(value); in GetSequenceText() 365 } else if (value->isa<ValueSequeue>()) { in GetValueText()
|
D | dump_proto.cc | 205 } else if (val->isa<ValueSequeue>()) { in SetValueToProto() 206 SetSequenceToProto(dyn_cast<ValueSequeue>(val), value_proto); in SetValueToProto()
|
/third_party/mindspore/mindspore/ccsrc/debug/debugger/ |
D | proto_exporter.cc | 141 } else if (val->isa<ValueSequeue>()) { in SetValueToProto() 142 SetSequenceToProto(dyn_cast<ValueSequeue>(val), value_proto); in SetValueToProto()
|
/third_party/mindspore/mindspore/ccsrc/transform/graph_ir/ |
D | op_adapter_util.cc | 43 if (!value->isa<ValueSequeue>()) { in ConvertAnyUtil()
|
D | op_adapter.h | 369 if (value->isa<ValueSequeue>()) { in ConvertAny()
|
D | op_adapter.cc | 529 } else if (item.second->isa<ValueSequeue>()) { in SetCustomOpAttr()
|
/third_party/mindspore/mindspore/lite/tools/anf_exporter/ |
D | fetch_content.cc | 319 } else if (value->isa<mindspore::ValueSequeue>()) { in FetchDataFromValueNode()
|
/third_party/mindspore/mindspore/ccsrc/utils/ |
D | convert_utils_py.cc | 153 {typeid(ValueSequeue).name(),
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/akg/ |
D | akg_kernel_json_generator.cc | 111 } else if (v->isa<ValueSequeue>()) { in ExtractAttrs()
|
/third_party/mindspore/mindspore/ccsrc/transform/express_ir/ |
D | mindir_exporter.cc | 647 } else if (value->isa<ValueSequeue>()) { in SetValueToAttributeProto()
|
/third_party/mindspore/mindspore/ccsrc/frontend/optimizer/ad/ |
D | kpynative.cc | 504 if (!input_1_adjoint->out()->isa<ValueSequeue>()) { in ForgeGetItemAdjoint()
|
/third_party/mindspore/mindspore/ccsrc/vm/ |
D | backend.cc | 543 if (value->isa<ValueSequeue>()) { in GetControlOpInput()
|
/third_party/mindspore/mindspore/ccsrc/frontend/parallel/auto_parallel/rec_core/ |
D | rec_generate_strategy.cc | 327 if (iter->second->isa<ValueSequeue>()) { in PrepareL2Normalize()
|
/third_party/mindspore/mindspore/ccsrc/frontend/parallel/ |
D | step_parallel.cc | 1067 if ((node->inputs().size() == 2) && (IsValueNode<ValueSequeue>(node->input(1)))) { in CheckInsertMirrorOps() 1330 if (elements[index]->isa<ValueSequeue>()) { in ExtractStrategy()
|