You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// define lines - assume embedding A is dimension embedding, embedding B is observation embedding
751
-
constsize_t numDimensions = _embeddingSourceDatasetB->getNumDimensions(); // Assume the number of points in A is the same as the number of dimensions in B
752
-
constsize_t numDimensionsFull = _embeddingSourceDatasetB->getNumDimensions(); // FIXME: is this needed??
753
-
constsize_t numPoints = _embeddingSourceDatasetB->getNumPoints(); // num of points in source dataset B
754
-
constsize_t numPointsLocal = _embeddingDatasetB->getNumPoints(); // num of points in the embedding B
751
+
constint64_t numDimensions = _embeddingSourceDatasetB->getNumDimensions(); // Assume the number of points in A is the same as the number of dimensions in B
752
+
constint64_t numDimensionsFull = _embeddingSourceDatasetB->getNumDimensions(); // FIXME: is this needed??
753
+
constint64_t numPoints = _embeddingSourceDatasetB->getNumPoints(); // num of points in source dataset B
754
+
constint64_t numPointsLocal = _embeddingDatasetB->getNumPoints(); // num of points in the embedding B
0 commit comments