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

int Impala::Core::Matrix::VirtualMatrix::AddRowPart ( int  rowNr,
int  colNr,
Real64 buffer,
int  bufSize 
) [inline]

Definition at line 132 of file VirtualMatrix.h.

References AddRowPartImpl(), HasAddRowImplReal32(), HasAddRowImplReal64(), and ILOG_ERROR.

00133     {
00134         if (HasAddRowImplReal64())
00135             return AddRowPartImpl(rowNr, colNr, buffer, bufSize);
00136         if (!HasAddRowImplReal32())
00137         {
00138             ILOG_ERROR("AddRowPart not implemented");
00139             return 0;
00140         }
00141         Real32* tmpBuf = new Real32[bufSize];
00142         for (int i=0 ; i<bufSize ; i++)
00143             tmpBuf[i] = buffer[i];
00144         int res = AddRowPartImpl(rowNr, colNr, tmpBuf, bufSize);
00145         delete tmpBuf;
00146         return res;
00147     }

Here is the call graph for this function:


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