Home
last modified time | relevance | path

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

/third_party/mindspore/tests/ut/cpp/dataset/
Dtensorshape_test.cc85 t2 = t2.PrependDim(3); in TEST_F()
86 t2 = t2.PrependDim(2); in TEST_F()
87 t2 = t2.PrependDim(1); in TEST_F()
101 t2 = t2.PrependDim(-1); in TEST_F()
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/core/
Dtensor_shape.h103 TensorShape PrependDim(dsize_t dim) const;
Dtensor_shape.cc195 TensorShape TensorShape::PrependDim(dsize_t dim) const { in PrependDim() function in mindspore::dataset::TensorShape
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/gnn/
Dgraph_data_client.cc409 shape = shape.PrependDim(size); in ParseNodeFeatureFromMemory()
451 shape = shape.PrependDim(size); in ParseEdgeFeatureFromMemory()
Dgraph_data_impl.cc414 shape = shape.PrependDim(size); in GetNodeFeature()
504 shape = shape.PrependDim(size); in GetEdgeFeature()
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/datasetops/
Dbatch_op.cc191 TensorShape new_shape = first_shape.PrependDim(static_cast<int64_t>(batch_size)); in BatchRows()