IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 6, 2004, 11:50:14 AM (22 years ago)
Author:
desonia
Message:

modified runTest / FullUnitTest to suppress line numbers in messages.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/fft/psVectorFFT.c

    r1385 r1404  
    55*  @author Robert DeSonia, MHPCC
    66*
    7 *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
    8 *  @date $Date: 2004-08-04 23:37:39 $
     7*  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
     8*  @date $Date: 2004-08-06 21:50:13 $
    99*
    1010*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    484484    numElements = in->n;
    485485
    486     out = psVectorRecycle( out, PS_TYPE_C32, numElements );
     486    out = psVectorRecycle( out, numElements, PS_TYPE_C32 );
    487487    out->n = numElements;
    488488
     
    542542        psLogMsg( __func__, PS_LOG_WARN, "Real portion of a non-Complex type called called for. "
    543543                  "Just a vector copy was performed." );
    544         out = psVectorRecycle( out, type, numElements );
     544        out = psVectorRecycle( out, numElements, type );
    545545        out->n = numElements;
    546546        memcpy( out->data.V, in->data.V, numElements * PSELEMTYPE_SIZEOF( type ) );
     
    552552        psC32* inVec = in->data.C32;
    553553
    554         out = psVectorRecycle( out, PS_TYPE_F32, numElements );
     554        out = psVectorRecycle( out, numElements, PS_TYPE_F32 );
    555555        out->n = numElements;
    556556        outVec = out->data.F32;
     
    588588        psLogMsg( __func__, PS_LOG_WARN, "Imaginary portion of a non-Complex type called for. "
    589589                  "A zeroed vector was returned." );
    590         out = psVectorRecycle( out, type, numElements );
     590        out = psVectorRecycle( out, numElements, type );
    591591        out->n = numElements;
    592592        memset( out->data.V, 0, PSELEMTYPE_SIZEOF( type ) * numElements );
     
    598598        psC32* inVec = in->data.C32;
    599599
    600         out = psVectorRecycle( out, PS_TYPE_F32, numElements );
     600        out = psVectorRecycle( out, numElements, PS_TYPE_F32 );
    601601        out->n = numElements;
    602602        outVec = out->data.F32;
     
    650650        psF32* imagVec = imag->data.F32;
    651651
    652         out = psVectorRecycle( out, PS_TYPE_C32, numElements );
     652        out = psVectorRecycle( out, numElements, PS_TYPE_C32 );
    653653        out->n = numElements;
    654654        outVec = out->data.C32;
     
    687687                  "Vector copy was performed instead." );
    688688
    689         out = psVectorRecycle( out, type, numElements );
     689        out = psVectorRecycle( out, numElements, type );
    690690        out->n = numElements;
    691691        memcpy( out->data.V, in->data.V, PSELEMTYPE_SIZEOF( type ) * numElements );
     
    697697        psC32* inVec = in->data.C32;
    698698
    699         out = psVectorRecycle( out, PS_TYPE_C32, numElements );
     699        out = psVectorRecycle( out, numElements, PS_TYPE_C32 );
    700700        out->n = numElements;
    701701        outVec = out->data.C32;
     
    746746        psF32 inAbs2;
    747747
    748         out = psVectorRecycle( out, PS_TYPE_F32, outNumElements );
     748        out = psVectorRecycle( out, outNumElements, PS_TYPE_F32 );
    749749        out->n = outNumElements;
    750750        outVec = out->data.F32;
Note: See TracChangeset for help on using the changeset viewer.