C++ API Reference for Intel® Data Analytics Acceleration Library 2019 Update 5

datastructures_merged.cpp

/* file: datastructures_merged.cpp */
/*******************************************************************************
* Copyright 2014-2019 Intel Corporation.
*
* This software and the related documents are Intel copyrighted materials, and
* your use of them is governed by the express license under which they were
* provided to you (License). Unless the License provides otherwise, you may not
* use, modify, copy, publish, distribute, disclose or transmit this software or
* the related documents without Intel's prior written permission.
*
* This software and the related documents are provided as is, with no express
* or implied warranties, other than those that are expressly stated in the
* License.
*******************************************************************************/
/*
! Content:
! Merged data structures example.
!******************************************************************************/
#include "daal.h"
#include "service.h"
using namespace daal;
int main()
{
std::cout << "Merged numeric table example" << std::endl << std::endl;
const size_t nObservations = 5;
const size_t nFeatures1 = 5;
const size_t nFeatures2 = 6;
const size_t firstReadRow = 3;
const size_t nRead = 1;
/*Example of using homogeneous numeric table*/
float data1[nFeatures1 * nObservations] =
{
0.0f, 0.1f, 0.2f, 0.3f, 0.4f,
1.0f, 1.1f, 1.2f, 1.3f, 1.4f,
2.0f, 2.1f, 2.2f, 2.3f, 2.4f,
3.0f, 3.1f, 3.2f, 3.3f, 3.4f,
4.0f, 4.1f, 4.2f, 4.3f, 4.4f,
};
float data2[nFeatures2 * nObservations] =
{
0.5f, 0.6f, 0.7f, 0.8f, 0.9f, 1,
1.5f, 1.6f, 1.7f, 1.8f, 1.9f, 2,
2.5f, 2.6f, 2.7f, 2.8f, 2.9f, 3,
3.5f, 3.6f, 3.7f, 3.8f, 3.9f, 4,
4.5f, 4.6f, 4.7f, 4.8f, 4.9f, 5,
};
/* Create two homogen numeric tables from data arrays */
NumericTablePtr dataTable1 = HomogenNumericTable<>::create(data1, nFeatures1, nObservations);
checkPtr(dataTable1.get());
NumericTablePtr dataTable2 = HomogenNumericTable<>::create(data2, nFeatures2, nObservations);
checkPtr(dataTable2.get());
/* Create merged numeric table consisting of two homogen numeric tables */
MergedNumericTablePtr dataTable = MergedNumericTable::create();
checkPtr(dataTable.get());
dataTable->addNumericTable(dataTable1);
dataTable->addNumericTable(dataTable2);
BlockDescriptor<> block;
/* Read one row from merged numeric table */
dataTable->getBlockOfRows(firstReadRow, nRead, readWrite, block);
printArray<float>(block.getBlockPtr(), nFeatures1 + nFeatures2, block.getNumberOfRows(), "Print 1 row from merged numeric table as float:");
/* Modify row of the merged numeric table */
float *row = block.getBlockPtr();
for (size_t i = 0; i < nFeatures1 + nFeatures2; i++) row[i] *= row[i];
dataTable->releaseBlockOfRows(block);
/* Read the same row from homogen numeric tables */
dataTable1->getBlockOfRows(firstReadRow, nRead, readOnly, block);
printArray<float>(block.getBlockPtr(), nFeatures1, block.getNumberOfRows(), "Print 1 row from first homogen numeric table as float:");
dataTable1->releaseBlockOfRows(block);
dataTable2->getBlockOfRows(firstReadRow, nRead, readOnly, block);
printArray<float>(block.getBlockPtr(), nFeatures2, block.getNumberOfRows(), "Print 1 row from second homogen numeric table as float:");
dataTable2->releaseBlockOfRows(block);
return 0;
}

For more complete information about compiler optimizations, see our Optimization Notice.