Blame thirdparty/openblas/xianyi-OpenBLAS-e6e87a2/lapack/potf2/zpotf2_U.c

kusano 2b45e8
/*********************************************************************/
kusano 2b45e8
/* Copyright 2009, 2010 The University of Texas at Austin.           */
kusano 2b45e8
/* All rights reserved.                                              */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/* Redistribution and use in source and binary forms, with or        */
kusano 2b45e8
/* without modification, are permitted provided that the following   */
kusano 2b45e8
/* conditions are met:                                               */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/*   1. Redistributions of source code must retain the above         */
kusano 2b45e8
/*      copyright notice, this list of conditions and the following  */
kusano 2b45e8
/*      disclaimer.                                                  */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/*   2. Redistributions in binary form must reproduce the above      */
kusano 2b45e8
/*      copyright notice, this list of conditions and the following  */
kusano 2b45e8
/*      disclaimer in the documentation and/or other materials       */
kusano 2b45e8
/*      provided with the distribution.                              */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/*    THIS  SOFTWARE IS PROVIDED  BY THE  UNIVERSITY OF  TEXAS AT    */
kusano 2b45e8
/*    AUSTIN  ``AS IS''  AND ANY  EXPRESS OR  IMPLIED WARRANTIES,    */
kusano 2b45e8
/*    INCLUDING, BUT  NOT LIMITED  TO, THE IMPLIED  WARRANTIES OF    */
kusano 2b45e8
/*    MERCHANTABILITY  AND FITNESS FOR  A PARTICULAR  PURPOSE ARE    */
kusano 2b45e8
/*    DISCLAIMED.  IN  NO EVENT SHALL THE UNIVERSITY  OF TEXAS AT    */
kusano 2b45e8
/*    AUSTIN OR CONTRIBUTORS BE  LIABLE FOR ANY DIRECT, INDIRECT,    */
kusano 2b45e8
/*    INCIDENTAL,  SPECIAL, EXEMPLARY,  OR  CONSEQUENTIAL DAMAGES    */
kusano 2b45e8
/*    (INCLUDING, BUT  NOT LIMITED TO,  PROCUREMENT OF SUBSTITUTE    */
kusano 2b45e8
/*    GOODS  OR  SERVICES; LOSS  OF  USE,  DATA,  OR PROFITS;  OR    */
kusano 2b45e8
/*    BUSINESS INTERRUPTION) HOWEVER CAUSED  AND ON ANY THEORY OF    */
kusano 2b45e8
/*    LIABILITY, WHETHER  IN CONTRACT, STRICT  LIABILITY, OR TORT    */
kusano 2b45e8
/*    (INCLUDING NEGLIGENCE OR OTHERWISE)  ARISING IN ANY WAY OUT    */
kusano 2b45e8
/*    OF  THE  USE OF  THIS  SOFTWARE,  EVEN  IF ADVISED  OF  THE    */
kusano 2b45e8
/*    POSSIBILITY OF SUCH DAMAGE.                                    */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/* The views and conclusions contained in the software and           */
kusano 2b45e8
/* documentation are those of the authors and should not be          */
kusano 2b45e8
/* interpreted as representing official policies, either expressed   */
kusano 2b45e8
/* or implied, of The University of Texas at Austin.                 */
kusano 2b45e8
/*********************************************************************/
kusano 2b45e8
kusano 2b45e8
#include <stdio.h></stdio.h>
kusano 2b45e8
#include <math.h></math.h>
kusano 2b45e8
#include "common.h"
kusano 2b45e8
kusano 2b45e8
static FLOAT dm1 = -1.;
kusano 2b45e8
kusano 2b45e8
#ifndef SQRT
kusano 2b45e8
#define SQRT(x)	sqrt(x)
kusano 2b45e8
#endif
kusano 2b45e8
kusano 2b45e8
blasint CNAME(blas_arg_t *args, BLASLONG *range_m, BLASLONG *range_n, FLOAT *sa, FLOAT *sb, BLASLONG myid) {
kusano 2b45e8
kusano 2b45e8
  BLASLONG n, lda;
kusano 2b45e8
  FLOAT *a;
kusano 2b45e8
kusano 2b45e8
  FLOAT ajj[2];
kusano 2b45e8
  BLASLONG i, j;
kusano 2b45e8
kusano 2b45e8
  n      = args -> n;
kusano 2b45e8
  a      = (FLOAT *)args -> a;
kusano 2b45e8
  lda    = args -> lda;
kusano 2b45e8
  
kusano 2b45e8
  if (range_n) {
kusano 2b45e8
    n      = range_n[1] - range_n[0];
kusano 2b45e8
    a     += range_n[0] * (lda + 1) * COMPSIZE;
kusano 2b45e8
  }
kusano 2b45e8
kusano 2b45e8
  for (j = 0; j < n; j++) {
kusano 2b45e8
kusano 2b45e8
    ajj[0] = DOTC_K(j, a, 1, a, 1);
kusano 2b45e8
    GET_IMAGE(ajj[1]);
kusano 2b45e8
kusano 2b45e8
    ajj[0] = *(a + j * 2) - ajj[0]; 
kusano 2b45e8
kusano 2b45e8
    if (ajj[0] <= 0){
kusano 2b45e8
      *(a + j * 2 + 0) = ajj[0];
kusano 2b45e8
      *(a + j * 2 + 1) = ZERO;
kusano 2b45e8
      return j + 1;
kusano 2b45e8
    }
kusano 2b45e8
kusano 2b45e8
    ajj[0] = SQRT(ajj[0]);
kusano 2b45e8
    *(a + j * 2 + 0)  = ajj[0];
kusano 2b45e8
    *(a + j * 2 + 1)  = ZERO;
kusano 2b45e8
kusano 2b45e8
    i = n - j - 1;
kusano 2b45e8
kusano 2b45e8
    if (i > 0){
kusano 2b45e8
      GEMV_U(j, i, 0, dm1, ZERO,
kusano 2b45e8
	      a + lda * 2, lda,
kusano 2b45e8
	      a, 1,
kusano 2b45e8
	      a + (j + lda) * 2, lda, sb);
kusano 2b45e8
      
kusano 2b45e8
      SCAL_K(i, 0, 0, ONE / ajj[0], ZERO,
kusano 2b45e8
	      a + (j + lda) * 2, lda, NULL, 0, NULL, 0);
kusano 2b45e8
    }
kusano 2b45e8
kusano 2b45e8
    a += 2 * lda;
kusano 2b45e8
  }
kusano 2b45e8
kusano 2b45e8
  return 0;
kusano 2b45e8
}