|
Algorithm 1 Partition and transmission of MVFD in sequence. |
Require: Raw Dataset, D;
Dimension sequence, S;
Segmentation rules for the last dimension, R;
Data Transfer Thread Pool, ;
Ensure: Data stream consisting of data blocks;
-
1:
For the first dimension in S, get all the data of the first value [0] from D.
-
2:
For , repeat the same work, and so on.;
-
3:
For the last dimension , use R to partition the data and get the array [];
-
4:
For each [] generated, the loop submits each element to the thread pool ;
|