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 "common.h"
kusano 2b45e8
kusano 2b45e8
int CNAME(BLASLONG m, BLASLONG n, FLOAT *a, BLASLONG lda, FLOAT *b){
kusano 2b45e8
  BLASLONG i, j;
kusano 2b45e8
  FLOAT *a_offset, *a_offset1, *a_offset2;
kusano 2b45e8
  FLOAT *b_offset;
kusano 2b45e8
kusano 2b45e8
  a_offset = a;
kusano 2b45e8
  b_offset = b;
kusano 2b45e8
kusano 2b45e8
  j = (n >> 1);
kusano 2b45e8
kusano 2b45e8
  if (j > 0){
kusano 2b45e8
    do {
kusano 2b45e8
      a_offset1 = a_offset;
kusano 2b45e8
      a_offset2 = a_offset + lda;
kusano 2b45e8
      a_offset += 2 * lda;
kusano 2b45e8
kusano 2b45e8
      i = (m >> 2);
kusano 2b45e8
      
kusano 2b45e8
      if (i > 0){
kusano 2b45e8
	do {
kusano 2b45e8
	  *(b_offset + 0) = *(a_offset1 + 0);
kusano 2b45e8
	  *(b_offset + 1) = *(a_offset2 + 0);
kusano 2b45e8
	  *(b_offset + 2) = *(a_offset1 + 1);
kusano 2b45e8
	  *(b_offset + 3) = *(a_offset2 + 1);
kusano 2b45e8
	  *(b_offset + 4) = *(a_offset1 + 2);
kusano 2b45e8
	  *(b_offset + 5) = *(a_offset2 + 2);
kusano 2b45e8
	  *(b_offset + 6) = *(a_offset1 + 3);
kusano 2b45e8
	  *(b_offset + 7) = *(a_offset2 + 3);
kusano 2b45e8
	  a_offset1 += 4;
kusano 2b45e8
	  a_offset2 += 4;
kusano 2b45e8
	  b_offset += 8;
kusano 2b45e8
	  i --;
kusano 2b45e8
	} while (i > 0);
kusano 2b45e8
      }
kusano 2b45e8
kusano 2b45e8
      i = (m & 3);
kusano 2b45e8
      
kusano 2b45e8
      if (i > 0){
kusano 2b45e8
	do {
kusano 2b45e8
	  *(b_offset + 0) = *(a_offset1 + 0);
kusano 2b45e8
	  *(b_offset + 1) = *(a_offset2 + 0);
kusano 2b45e8
	  a_offset1 ++;
kusano 2b45e8
	  a_offset2 ++;
kusano 2b45e8
	  b_offset += 2;
kusano 2b45e8
	  i --;
kusano 2b45e8
	} while (i > 0);
kusano 2b45e8
      }
kusano 2b45e8
      j --;
kusano 2b45e8
    } while (j > 0);
kusano 2b45e8
  }
kusano 2b45e8
kusano 2b45e8
  if (n & 1){
kusano 2b45e8
kusano 2b45e8
    i = (m >> 3);
kusano 2b45e8
    if (i > 0){
kusano 2b45e8
      do {
kusano 2b45e8
	*(b_offset + 0) = *(a_offset + 0);
kusano 2b45e8
	*(b_offset + 1) = *(a_offset + 1);
kusano 2b45e8
	*(b_offset + 2) = *(a_offset + 2);
kusano 2b45e8
	*(b_offset + 3) = *(a_offset + 3);
kusano 2b45e8
	*(b_offset + 4) = *(a_offset + 4);
kusano 2b45e8
	*(b_offset + 5) = *(a_offset + 5);
kusano 2b45e8
	*(b_offset + 6) = *(a_offset + 6);
kusano 2b45e8
	*(b_offset + 7) = *(a_offset + 7);
kusano 2b45e8
	a_offset += 8;
kusano 2b45e8
	b_offset += 8;
kusano 2b45e8
	i --;
kusano 2b45e8
      } while (i > 0);
kusano 2b45e8
    }
kusano 2b45e8
    
kusano 2b45e8
    i = (m & 7);
kusano 2b45e8
    
kusano 2b45e8
    if (i > 0){
kusano 2b45e8
      do {
kusano 2b45e8
	*(b_offset + 0) = *(a_offset + 0);
kusano 2b45e8
	a_offset ++;
kusano 2b45e8
	b_offset ++;
kusano 2b45e8
	i --;
kusano 2b45e8
      } while (i > 0);
kusano 2b45e8
    }
kusano 2b45e8
  }
kusano 2b45e8
kusano 2b45e8
  return 0;
kusano 2b45e8
}
kusano 2b45e8