Home
last modified time | relevance | path

Searched refs:AbstractSequeue (Results 1 – 7 of 7) sorted by relevance

/third_party/mindspore/mindspore/core/abstract/
Dabstract_value.h362 class MS_CORE_API AbstractSequeue : public AbstractBase {
364 explicit AbstractSequeue(const AbstractBasePtrList &elements) : elements_(elements) {} in AbstractSequeue() function
365 ~AbstractSequeue() override = default;
366 MS_DECLARE_PARENT(AbstractSequeue, AbstractBase)
386 virtual bool operator==(const AbstractSequeue &other) const;
391 using AbstractSequeuePtr = std::shared_ptr<AbstractSequeue>;
393 class MS_CORE_API AbstractTuple : public AbstractSequeue {
395 explicit AbstractTuple(const AbstractBasePtrList &elements) : AbstractSequeue(elements) {} in AbstractTuple()
398 MS_DECLARE_PARENT(AbstractTuple, AbstractSequeue) in MS_DECLARE_PARENT() argument
412 …std::string ToString() const override { return type_name() + "(" + AbstractSequeue::ToString() + "… in ToString()
[all …]
Dabstract_value.cc265 const AbstractBasePtr AbstractSequeue::operator[](const std::size_t &dim) const { in operator []()
272 std::string AbstractSequeue::ToString() const { in ToString()
287 TypePtrList AbstractSequeue::ElementsType() const { in ElementsType()
297 BaseShapePtrList AbstractSequeue::ElementsShape() const { in ElementsShape()
307 AbstractBasePtrList AbstractSequeue::ElementsClone() const { in ElementsClone()
317 AbstractBasePtrList AbstractSequeue::ElementsBroaden() const { in ElementsBroaden()
327 AbstractBasePtrList AbstractSequeue::ElementsPartialBroaden() const { in ElementsPartialBroaden()
338 ValuePtr AbstractSequeue::ElementsBuildValue() const { in ElementsBuildValue()
351 template ValuePtr AbstractSequeue::ElementsBuildValue<ValueTuple>() const;
352 template ValuePtr AbstractSequeue::ElementsBuildValue<ValueList>() const;
[all …]
/third_party/mindspore/mindspore/ccsrc/frontend/operator/composite/
Dzip_operation.cc34 using mindspore::abstract::AbstractSequeue;
49 return abs->isa<AbstractSequeue>(); in GenerateFuncGraph()
/third_party/mindspore/mindspore/ccsrc/frontend/operator/
Dops_front_infer_function.cc370 } else if (args_spec_list[1]->isa<AbstractSequeue>()) { in InferImplReduceShape()
/third_party/mindspore/mindspore/ccsrc/pipeline/jit/static_analysis/
Dprogram_specialize.cc63 } else if (abs_base->isa<AbstractSequeue>()) { in CheckAbstractTensor()
Dstatic_analysis.cc752 if (abstract->isa<AbstractSequeue>()) { in NeedWaitForBranches()
/third_party/mindspore/mindspore/ccsrc/pipeline/pynative/
Dpynative_execute.cc1110 !op_exec_info->abstract->isa<abstract::AbstractSequeue>()) { in GetOpOutput()