Click here to Skip to main content
15,885,956 members
Articles / High Performance Computing / Vectorization

A C++ String Class

Rate me:
Please Sign up or sign in to vote.
4.96/5 (29 votes)
3 Jan 2015CPOL13 min read 120.7K   2.6K   93  
A fast, reference counted, copy-on-write string class
#include "stdafx.h"

/*
 * -- SuperLU routine (version 2.0) --
 * Lawrence Berkeley National Lab, Univ. of California Berkeley,
 * and Xerox Palo Alto Research Center.
 * September 10, 2007
 *
 */
#include <math.h>
#include "hnum_slu_mt_Cnames.h"
#include "hnum_slu_mt_util.h"
#include "hnum_slu_dcomplex.h"

#include "hnum_slucmn.h"

namespace harlinn
{
    namespace numerics
    {
        namespace SuperLU
        {
            int zlacon_(int *n, doublecomplex *v, doublecomplex *x, double *est, int *kase)

            {
            /*
                Purpose   
                =======   

                ZLACON estimates the 1-norm of a square matrix A.   
                Reverse communication is used for evaluating matrix-vector products. 
  

                Arguments   
                =========   

                N      (input) INT
                        The order of the matrix.  N >= 1.   

                V      (workspace) DOUBLE COMPLEX PRECISION array, dimension (N)   
                        On the final return, V = A*W,  where  EST = norm(V)/norm(W)   
                        (W is not returned).   

                X      (input/output) DOUBLE COMPLEX PRECISION array, dimension (N)   
                        On an intermediate return, X should be overwritten by   
                                A * X,   if KASE=1,   
                                A' * X,  if KASE=2,
                        where A' is the conjugate transpose of A,
                        and ZLACON must be re-called with all the other parameters   
                        unchanged.   


                EST    (output) DOUBLE PRECISION   
                        An estimate (a lower bound) for norm(A).   

                KASE   (input/output) INT
                        On the initial call to ZLACON, KASE should be 0.   
                        On an intermediate return, KASE will be 1 or 2, indicating   
                        whether X should be overwritten by A * X  or A' * X.   
                        On the final return from ZLACON, KASE will again be 0.   

                Further Details   
                ======= =======   

                Contributed by Nick Higham, University of Manchester.   
                Originally named CONEST, dated March 16, 1988.   

                Reference: N.J. Higham, "FORTRAN codes for estimating the one-norm of 
                a real or complex matrix, with applications to condition estimation", 
                ACM Trans. Math. Soft., vol. 14, no. 4, pp. 381-396, December 1988.   
                ===================================================================== 
            */

                /* Table of constant values */
                int c__1 = 1;
                doublecomplex      zero = {0.0, 0.0};
                doublecomplex      one = {1.0, 0.0};

                /* System generated locals */
                double d__1;
    
                /* Local variables */
                static int iter;
                static int jump, jlast;
                static double altsgn, estold;
                static int i, j;
                double temp;
                double safmin;
                    

                safmin = dlamch_("Safe minimum");
                if ( *kase == 0 ) {
	            for (i = 0; i < *n; ++i) {
	                x[i].r = 1. / (double) (*n);
	                x[i].i = 0.;
	            }
	            *kase = 1;
	            jump = 1;
	            return 0;
                }

                switch (jump) {
	            case 1:  goto L20;
	            case 2:  goto L40;
	            case 3:  goto L70;
	            case 4:  goto L110;
	            case 5:  goto L140;
                }

                /*     ................ ENTRY   (JUMP = 1)   
	                FIRST ITERATION.  X HAS BEEN OVERWRITTEN BY A*X. */
                L20:
                if (*n == 1) {
	            v[0] = x[0];
	            *est = z_abs(&v[0]);
	            /*        ... QUIT */
	            goto L150;
                }
                *est = dzsum1_(n, x, &c__1);

                for (i = 0; i < *n; ++i) {
	            d__1 = z_abs(&x[i]);
	            if (d__1 > safmin) {
	                d__1 = 1 / d__1;
	                x[i].r *= d__1;
	                x[i].i *= d__1;
	            } else {
	                x[i] = one;
	            }
                }
                *kase = 2;
                jump = 2;
                return 0;

                /*     ................ ENTRY   (JUMP = 2)   
	                FIRST ITERATION.  X HAS BEEN OVERWRITTEN BY TRANSPOSE(A)*X. */
            L40:
                j = izmax1_(n, &x[0], &c__1);
                --j;
                iter = 2;

                /*     MAIN LOOP - ITERATIONS 2,3,...,ITMAX. */
            L50:
                for (i = 0; i < *n; ++i) x[i] = zero;
                x[j] = one;
                *kase = 1;
                jump = 3;
                return 0;

                /*     ................ ENTRY   (JUMP = 3)   
	                X HAS BEEN OVERWRITTEN BY A*X. */
            L70:
#ifdef USE_VENDOR_BLAS
                zcopy_(n, &x[0], &c__1, &v[0], &c__1);
#else
                zcopy_(*n, &x[0],&v[0]);
#endif
                estold = *est;
                *est = dzsum1_(n, v, &c__1);


            L90:
                /*     TEST FOR CYCLING. */
                if (*est <= estold) goto L120;

                for (i = 0; i < *n; ++i) {
	            d__1 = z_abs(&x[i]);
	            if (d__1 > safmin) {
	                d__1 = 1 / d__1;
	                x[i].r *= d__1;
	                x[i].i *= d__1;
	            } else {
	                x[i] = one;
	            }
                }
                *kase = 2;
                jump = 4;
                return 0;

                /*     ................ ENTRY   (JUMP = 4)   
	                X HAS BEEN OVERWRITTEN BY TRANDPOSE(A)*X. */
            L110:
                jlast = j;
                j = izmax1_(n, &x[0], &c__1);
                --j;
                if (x[jlast].r != (d__1 = x[j].r, fabs(d__1)) && iter < 5) {
	            ++iter;
	            goto L50;
                }

                /*     ITERATION COMPLETE.  FINAL STAGE. */
            L120:
                altsgn = 1.;
                for (i = 1; i <= *n; ++i) {
	            x[i-1].r = altsgn * ((double) (i - 1) / (double) (*n - 1) + 1.);
	            x[i-1].i = 0.;
	            altsgn = -altsgn;
                }
                *kase = 1;
                jump = 5;
                return 0;
    
                /*     ................ ENTRY   (JUMP = 5)   
	                X HAS BEEN OVERWRITTEN BY A*X. */
            L140:
                temp = dzsum1_(n, x, &c__1) / (double) (*n * 3) * 2.;
                if (temp > *est) {
#ifdef USE_VENDOR_BLAS
	            zcopy_(n, &x[0], &c__1, &v[0], &c__1);
#else
                zcopy_(*n, &x[0], &v[0]);
#endif
	            *est = temp;
                }

            L150:
                *kase = 0;
                return 0;

            } /* zlacon_ */

        };
    };
};

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect Sea Surveillance AS
Norway Norway
Chief Architect - Sea Surveillance AS.

Specializing in integrated operations and high performance computing solutions.

I’ve been fooling around with computers since the early eighties, I’ve even done work on CP/M and MP/M.

Wrote my first “real” program on a BBC micro model B based on a series in a magazine at that time. It was fun and I got hooked on this thing called programming ...

A few Highlights:

  • High performance application server development
  • Model Driven Architecture and Code generators
  • Real-Time Distributed Solutions
  • C, C++, C#, Java, TSQL, PL/SQL, Delphi, ActionScript, Perl, Rexx
  • Microsoft SQL Server, Oracle RDBMS, IBM DB2, PostGreSQL
  • AMQP, Apache qpid, RabbitMQ, Microsoft Message Queuing, IBM WebSphereMQ, Oracle TuxidoMQ
  • Oracle WebLogic, IBM WebSphere
  • Corba, COM, DCE, WCF
  • AspenTech InfoPlus.21(IP21), OsiSoft PI


More information about what I do for a living can be found at: harlinn.com or LinkedIn

You can contact me at espen@harlinn.no

Comments and Discussions