Searched refs:long_shape (Results 1 – 2 of 2) sorted by relevance
138 void CastShapeSizeToLong(const std::vector<size_t> &shape, std::vector<int64_t> *long_shape);
923 void CastShapeSizeToLong(const std::vector<size_t> &shape, std::vector<int64_t> *long_shape) { in CastShapeSizeToLong() argument924 MS_EXCEPTION_IF_NULL(long_shape); in CastShapeSizeToLong()925 (void)std::transform(shape.begin(), shape.end(), std::back_inserter(*long_shape), SizeToLong); in CastShapeSizeToLong()