#include "daal.h"
#include "service.h"
using namespace std;
using namespace daal;
using namespace daal::algorithms;
const size_t nBlocks = 4;
const string datasetFileNames[] =
{
"../data/distributed/covcormoments_dense_1.csv",
"../data/distributed/covcormoments_dense_2.csv",
"../data/distributed/covcormoments_dense_3.csv",
"../data/distributed/covcormoments_dense_4.csv"
};
low_order_moments::PartialResultPtr partialResult[nBlocks];
low_order_moments::ResultPtr result;
void computestep1Local(size_t i);
void computeOnMasterNode();
void printResults(const low_order_moments::ResultPtr &res);
int main(int argc, char *argv[])
{
checkArguments(argc, argv, 4, &datasetFileNames[0], &datasetFileNames[1], &datasetFileNames[2], &datasetFileNames[3]);
for(size_t i = 0; i < nBlocks; i++)
{
computestep1Local(i);
}
computeOnMasterNode();
printResults(result);
return 0;
}
void computestep1Local(size_t block)
{
FileDataSource<CSVFeatureManager> dataSource(datasetFileNames[block], DataSource::doAllocateNumericTable,
DataSource::doDictionaryFromContext);
dataSource.loadDataBlock();
low_order_moments::Distributed<step1Local> algorithm;
algorithm.input.set(low_order_moments::data, dataSource.getNumericTable());
algorithm.compute();
partialResult[block] = algorithm.getPartialResult();
}
void computeOnMasterNode()
{
low_order_moments::Distributed<step2Master> algorithm;
for (size_t i = 0; i < nBlocks; i++)
{
algorithm.input.add(low_order_moments::partialResults, partialResult[i]);
}
algorithm.compute();
algorithm.finalizeCompute();
result = algorithm.getResult();
}
void printResults(const low_order_moments::ResultPtr &res)
{
printNumericTable(res->get(low_order_moments::minimum), "Minimum:");
printNumericTable(res->get(low_order_moments::maximum), "Maximum:");
printNumericTable(res->get(low_order_moments::sum), "Sum:");
printNumericTable(res->get(low_order_moments::sumSquares), "Sum of squares:");
printNumericTable(res->get(low_order_moments::sumSquaresCentered), "Sum of squared difference from the means:");
printNumericTable(res->get(low_order_moments::mean), "Mean:");
printNumericTable(res->get(low_order_moments::secondOrderRawMoment), "Second order raw moment:");
printNumericTable(res->get(low_order_moments::variance), "Variance:");
printNumericTable(res->get(low_order_moments::standardDeviation), "Standard deviation:");
printNumericTable(res->get(low_order_moments::variation), "Variation:");
}