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

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

Definition at line 150 of file VirtualMatrix.h.

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

00151     {
00152         if (HasAddRowImplReal32())
00153             return AddRowPartImpl(rowNr, colNr, buffer, bufSize);
00154         if (!HasAddRowImplReal64())
00155         {
00156             ILOG_ERROR("AddRowPart not implemented");
00157             return 0;
00158         }
00159         Real64* tmpBuf = new Real64[bufSize];
00160         for (int i=0 ; i<bufSize ; i++)
00161             tmpBuf[i] = buffer[i];
00162         int res = AddRowPartImpl(rowNr, colNr, tmpBuf, bufSize);
00163         delete tmpBuf;
00164         return res;
00165     }

Here is the call graph for this function:


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