Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/ops/
Dprimitive.py533 def has_dynamic_shape(shp): function
537 return any(has_dynamic_shape(e) for e in shp)
540 if not has_dynamic_shape(out['shape']):
/third_party/mindspore/mindspore/core/abstract/
Dutils.cc122 bool has_dynamic_shape = false; in ShapeJoin() local
128 has_dynamic_shape = true; in ShapeJoin()
132 has_dynamic_shape = true; in ShapeJoin()
135 if (!has_dynamic_shape) { in ShapeJoin()
/third_party/mindspore/mindspore/train/
Ddataset_helper.py89 def has_dynamic_shape(dataset_shapes): function
98 (min_shapes, max_shapes) = (None, None) if not has_dynamic_shape(dataset_shapes) \
/third_party/mindspore/mindspore/ccsrc/vm/
Dgraph_partition.cc562 bool has_dynamic_shape = dynamic_nodes_set.find(node) != dynamic_nodes_set.end(); in SplitDynamicNodeSegment() local
568 has_dynamic_shape = true; in SplitDynamicNodeSegment()
577 if (has_dynamic_shape) { in SplitDynamicNodeSegment()
/third_party/mindspore/mindspore/core/ir/
Danf.h436 bool has_dynamic_shape() const { return has_dynamic_shape_; } in has_dynamic_shape() function
/third_party/mindspore/mindspore/ccsrc/backend/session/
Dgpu_session.cc307 if (input_param != nullptr && input_param->has_dynamic_shape()) { in UpdateGraphInputAbstract()
Dascend_session.cc480 } else if (input_param->has_dynamic_shape()) { in LoadInputData()