Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

int Impala::Core::Matrix::VirtualMatrix::AddRow ( int  rowNr,
Real32 buffer 
) [inline]

Definition at line 113 of file VirtualMatrix.h.

References AddRowImpl(), HasAddRowImplReal32(), HasAddRowImplReal64(), ILOG_ERROR, and NrCol().

00114     {
00115         if (HasAddRowImplReal32())
00116             return AddRowImpl(rowNr, buffer);
00117         if (!HasAddRowImplReal64())
00118         {
00119             ILOG_ERROR("AddRow not implemented");
00120             return 0;
00121         }
00122         int nr = NrCol();
00123         Real64* tmpBuf = new Real64[nr];
00124         for (int i=0 ; i<nr ; i++)
00125             tmpBuf[i] = buffer[i];
00126         int res = AddRowImpl(rowNr, tmpBuf);
00127         delete tmpBuf;
00128         return res;
00129     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:20:21 2011 for ImpalaSrc by  doxygen 1.5.1