|
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 |
#ifndef LOWER
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
#ifndef CONJ
|
|
kusano |
2b45e8 |
#ifdef XDOUBLE
|
|
kusano |
2b45e8 |
#define KERNEL_FUNC xherk_kernel_UN
|
|
kusano |
2b45e8 |
#elif defined(DOUBLE)
|
|
kusano |
2b45e8 |
#define KERNEL_FUNC zherk_kernel_UN
|
|
kusano |
2b45e8 |
#else
|
|
kusano |
2b45e8 |
#define KERNEL_FUNC cherk_kernel_UN
|
|
kusano |
2b45e8 |
#endif
|
|
kusano |
2b45e8 |
#else
|
|
kusano |
2b45e8 |
#ifdef XDOUBLE
|
|
kusano |
2b45e8 |
#define KERNEL_FUNC xherk_kernel_UC
|
|
kusano |
2b45e8 |
#elif defined(DOUBLE)
|
|
kusano |
2b45e8 |
#define KERNEL_FUNC zherk_kernel_UC
|
|
kusano |
2b45e8 |
#else
|
|
kusano |
2b45e8 |
#define KERNEL_FUNC cherk_kernel_UC
|
|
kusano |
2b45e8 |
#endif
|
|
kusano |
2b45e8 |
#endif
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
#else
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
#ifndef CONJ
|
|
kusano |
2b45e8 |
#ifdef XDOUBLE
|
|
kusano |
2b45e8 |
#define KERNEL_FUNC xherk_kernel_LN
|
|
kusano |
2b45e8 |
#elif defined(DOUBLE)
|
|
kusano |
2b45e8 |
#define KERNEL_FUNC zherk_kernel_LN
|
|
kusano |
2b45e8 |
#else
|
|
kusano |
2b45e8 |
#define KERNEL_FUNC cherk_kernel_LN
|
|
kusano |
2b45e8 |
#endif
|
|
kusano |
2b45e8 |
#else
|
|
kusano |
2b45e8 |
#ifdef XDOUBLE
|
|
kusano |
2b45e8 |
#define KERNEL_FUNC xherk_kernel_LC
|
|
kusano |
2b45e8 |
#elif defined(DOUBLE)
|
|
kusano |
2b45e8 |
#define KERNEL_FUNC zherk_kernel_LC
|
|
kusano |
2b45e8 |
#else
|
|
kusano |
2b45e8 |
#define KERNEL_FUNC cherk_kernel_LC
|
|
kusano |
2b45e8 |
#endif
|
|
kusano |
2b45e8 |
#endif
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
#endif
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
#define KERNEL_OPERATION(M, N, K, ALPHA, SA, SB, C, LDC, X, Y) \
|
|
kusano |
2b45e8 |
KERNEL_FUNC(M, N, K, ALPHA[0], SA, SB, (FLOAT *)(C) + ((X) + (Y) * LDC) * COMPSIZE, LDC, (X) - (Y))
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
#if !defined(LOWER) && !defined(TRANS)
|
|
kusano |
2b45e8 |
#define SYRK_LOCAL HERK_UN
|
|
kusano |
2b45e8 |
#elif !defined(LOWER) && defined(TRANS)
|
|
kusano |
2b45e8 |
#define SYRK_LOCAL HERK_UC
|
|
kusano |
2b45e8 |
#elif defined(LOWER) && !defined(TRANS)
|
|
kusano |
2b45e8 |
#define SYRK_LOCAL HERK_LN
|
|
kusano |
2b45e8 |
#else
|
|
kusano |
2b45e8 |
#define SYRK_LOCAL HERK_LC
|
|
kusano |
2b45e8 |
#endif
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
#undef SCAL_K
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
#ifdef XDOUBLE
|
|
kusano |
2b45e8 |
#define SCAL_K QSCAL_K
|
|
kusano |
2b45e8 |
#elif defined(DOUBLE)
|
|
kusano |
2b45e8 |
#define SCAL_K DSCAL_K
|
|
kusano |
2b45e8 |
#else
|
|
kusano |
2b45e8 |
#define SCAL_K SSCAL_K
|
|
kusano |
2b45e8 |
#endif
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
static inline int syrk_beta(BLASLONG m_from, BLASLONG m_to, BLASLONG n_from, BLASLONG n_to, FLOAT *alpha, FLOAT *c, BLASLONG ldc) {
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
BLASLONG i;
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
#ifndef LOWER
|
|
kusano |
2b45e8 |
if (m_from > n_from) n_from = m_from;
|
|
kusano |
2b45e8 |
if (m_to > n_to ) m_to = n_to;
|
|
kusano |
2b45e8 |
#else
|
|
kusano |
2b45e8 |
if (m_from < n_from) m_from = n_from;
|
|
kusano |
2b45e8 |
if (m_to < n_to ) n_to = m_to;
|
|
kusano |
2b45e8 |
#endif
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
c += (m_from + n_from * ldc) * COMPSIZE;
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
m_to -= m_from;
|
|
kusano |
2b45e8 |
n_to -= n_from;
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
for (i = 0; i < n_to; i++){
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
#ifndef LOWER
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
SCAL_K(MIN(i + n_from - m_from + 1, m_to) * COMPSIZE, 0, 0, alpha[0], c, 1, NULL, 0, NULL, 0);
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
if (i + n_from - m_from + 1 <= m_to)
|
|
kusano |
2b45e8 |
*(c + (i + n_from - m_from) * COMPSIZE + 1) = ZERO;
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
c += ldc * COMPSIZE;
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
#else
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
SCAL_K(MIN(m_to - i + m_from - n_from, m_to) * COMPSIZE, 0, 0, alpha[0], c, 1, NULL, 0, NULL, 0);
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
if (i < m_from - n_from) {
|
|
kusano |
2b45e8 |
c += ldc * COMPSIZE;
|
|
kusano |
2b45e8 |
} else {
|
|
kusano |
2b45e8 |
*(c + 1) = ZERO;
|
|
kusano |
2b45e8 |
c += (1 + ldc) * COMPSIZE;
|
|
kusano |
2b45e8 |
}
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
#endif
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
}
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
return 0;
|
|
kusano |
2b45e8 |
}
|
|
kusano |
2b45e8 |
|
|
kusano |
2b45e8 |
#ifdef THREADED_LEVEL3
|
|
kusano |
2b45e8 |
#include "level3_syrk_threaded.c"
|
|
kusano |
2b45e8 |
#else
|
|
kusano |
2b45e8 |
#include "level3_syrk.c"
|
|
kusano |
2b45e8 |
#endif
|