mirror of
https://github.com/amd/blis.git
synced 2026-05-05 15:01:13 +00:00
Details:
- Removed explicit reference to The University of Texas at Austin in the
third clause of the license comment blocks of all relevant files and
replaced it with a more all-encompassing "copyright holder(s)".
- Removed duplicate words ("derived") from a few kernels' license
comment blocks.
- Homogenized license comment block in kernels/zen/3/bli_gemm_small.c
with format of all other comment blocks.
300 lines
11 KiB
C
300 lines
11 KiB
C
/*
|
|
|
|
BLIS
|
|
An object-based framework for developing high-performance BLAS-like
|
|
libraries.
|
|
|
|
Copyright (C) 2014, The University of Texas at Austin
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions are
|
|
met:
|
|
- Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
- Redistributions in binary form must reproduce the above copyright
|
|
notice, this list of conditions and the following disclaimer in the
|
|
documentation and/or other materials provided with the distribution.
|
|
- Neither the name(s) of the copyright holder(s) nor the names of its
|
|
contributors may be used to endorse or promote products derived
|
|
from this software without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
#include "blis.h"
|
|
|
|
void bli_spackm_4xk(
|
|
conj_t conja,
|
|
dim_t n,
|
|
void* beta,
|
|
void* a, inc_t inca, inc_t lda,
|
|
void* p
|
|
)
|
|
{
|
|
bli_check_error_code( BLIS_NOT_YET_IMPLEMENTED );
|
|
}
|
|
|
|
void bli_dpackm_4xk(
|
|
conj_t conja,
|
|
dim_t n,
|
|
void* beta,
|
|
void* a, inc_t inca, inc_t lda,
|
|
void* p
|
|
)
|
|
{
|
|
double* restrict beta_cast = beta;
|
|
double* restrict alpha1 = a;
|
|
double* restrict pi1 = p;
|
|
|
|
inc_t off1 = 1 * inca * sizeof(double);
|
|
inc_t off3 = 3 * inca * sizeof(double);
|
|
inc_t ldas = lda * sizeof(double);
|
|
|
|
if ( bli_deq1( *beta_cast ) )
|
|
{
|
|
dim_t n_iter = n / 4;
|
|
dim_t n_left = n % 4;
|
|
|
|
__asm__ volatile
|
|
(
|
|
" \n\t"
|
|
//"movapd 4096(%%ebp), %%xmm7 \n\t"
|
|
//"movapd %%xmm7, 4096(%%ebp) \n\t"
|
|
" \n\t"
|
|
"movl %2, %%edi \n\t" // load a
|
|
"movl %3, %%ebp \n\t" // load p
|
|
" \n\t"
|
|
"movl %4, %%eax \n\t" // load ldas
|
|
"leal (%%edi,%%eax), %%edx \n\t" // load a + ldas
|
|
"sall $1, %%eax \n\t" // ldas *= 2;
|
|
" \n\t"
|
|
"movl %5, %%ebx \n\t" // load off1
|
|
"movl %6, %%ecx \n\t" // load off3
|
|
" \n\t"
|
|
"movl %0, %%esi \n\t"
|
|
"testl %%esi, %%esi \n\t"
|
|
"je .DCONSIDERKLEFT \n\t"
|
|
" \n\t"
|
|
" \n\t"
|
|
" \n\t"
|
|
".DLOOPKITER: \n\t"
|
|
" \n\t"
|
|
"addl $128, %%ebp \n\t"
|
|
" \n\t"
|
|
"movlpd (%%edi ), %%xmm0 \n\t" // iteration 0
|
|
"movhpd (%%edi,%%ebx, ), %%xmm0 \n\t"
|
|
"movlpd (%%edi,%%ebx,2), %%xmm1 \n\t"
|
|
"movhpd (%%edi,%%ecx, ), %%xmm1 \n\t"
|
|
"addl %%eax, %%edi \n\t"
|
|
"movapd %%xmm0, -16 * 8(%%ebp) \n\t"
|
|
"movapd %%xmm1, -14 * 8(%%ebp) \n\t"
|
|
" \n\t"
|
|
"movlpd (%%edx ), %%xmm2 \n\t" // iteration 1
|
|
"movhpd (%%edx,%%ebx, ), %%xmm2 \n\t"
|
|
"movlpd (%%edx,%%ebx,2), %%xmm3 \n\t"
|
|
"movhpd (%%edx,%%ecx, ), %%xmm3 \n\t"
|
|
"addl %%eax, %%edx \n\t"
|
|
"movapd %%xmm2, -12 * 8(%%ebp) \n\t"
|
|
"movapd %%xmm3, -10 * 8(%%ebp) \n\t"
|
|
" \n\t"
|
|
"movlpd (%%edi ), %%xmm4 \n\t" // iteration 2
|
|
"movhpd (%%edi,%%ebx, ), %%xmm4 \n\t"
|
|
"movlpd (%%edi,%%ebx,2), %%xmm5 \n\t"
|
|
"movhpd (%%edi,%%ecx, ), %%xmm5 \n\t"
|
|
"addl %%eax, %%edi \n\t"
|
|
"movapd %%xmm4, -8 * 8(%%ebp) \n\t"
|
|
"movapd %%xmm5, -6 * 8(%%ebp) \n\t"
|
|
" \n\t"
|
|
"movlpd (%%edx ), %%xmm6 \n\t" // iteration 3
|
|
"movhpd (%%edx,%%ebx, ), %%xmm6 \n\t"
|
|
"movlpd (%%edx,%%ebx,2), %%xmm7 \n\t"
|
|
"movhpd (%%edx,%%ecx, ), %%xmm7 \n\t"
|
|
"addl %%eax, %%edx \n\t"
|
|
"movapd %%xmm6, -4 * 8(%%ebp) \n\t"
|
|
"movapd %%xmm7, -2 * 8(%%ebp) \n\t"
|
|
" \n\t"
|
|
"decl %%esi \n\t"
|
|
"jne .DLOOPKITER \n\t"
|
|
" \n\t"
|
|
" \n\t"
|
|
" \n\t"
|
|
".DCONSIDERKLEFT: \n\t"
|
|
" \n\t"
|
|
"movl %1, %%esi \n\t"
|
|
"testl %%esi, %%esi \n\t"
|
|
"je .DDONE \n\t"
|
|
" \n\t"
|
|
" \n\t"
|
|
" \n\t"
|
|
".DLOOPKLEFT: \n\t"
|
|
" \n\t"
|
|
"addl $32, %%ebp \n\t"
|
|
" \n\t"
|
|
"movlpd (%%edi ), %%xmm0 \n\t"
|
|
"movhpd (%%edi,%%ebx, ), %%xmm0 \n\t"
|
|
"movlpd (%%edi,%%ebx,2), %%xmm1 \n\t"
|
|
"movhpd (%%edi,%%ecx, ), %%xmm1 \n\t"
|
|
"addl %%eax, %%edi \n\t"
|
|
"movapd %%xmm0, -4 * 8(%%ebp) \n\t"
|
|
"movapd %%xmm1, -2 * 8(%%ebp) \n\t"
|
|
" \n\t"
|
|
"decl %%esi \n\t"
|
|
"jne .DLOOPKLEFT \n\t"
|
|
" \n\t"
|
|
" \n\t"
|
|
" \n\t"
|
|
".DDONE: \n\t"
|
|
" \n\t"
|
|
: // output operands
|
|
: // input operands
|
|
"m" (n_iter),
|
|
"m" (n_left),
|
|
"m" (alpha1),
|
|
"m" (pi1),
|
|
"m" (ldas),
|
|
"m" (off1),
|
|
"m" (off3)
|
|
: // register clobber list
|
|
"eax", "ebx", "ecx", "edx", "edi", "ebp", "esi",
|
|
"xmm0", "xmm1", "xmm2", "xmm3",
|
|
"xmm4", "xmm5", "xmm6", "xmm7",
|
|
"memory"
|
|
);
|
|
}
|
|
else
|
|
{
|
|
dim_t n_iter = n / 2;
|
|
dim_t n_left = n % 2;
|
|
|
|
__asm__ volatile
|
|
(
|
|
" \n\t"
|
|
"movl %2, %%edi \n\t" // load a
|
|
"movl %3, %%ebp \n\t" // load p
|
|
" \n\t"
|
|
"movl %4, %%eax \n\t" // load ldas
|
|
"leal (%%edi,%%eax), %%edx \n\t" // load a + ldas
|
|
"sall $1, %%eax \n\t" // ldas *= 2;
|
|
" \n\t"
|
|
"movl %5, %%ebx \n\t" // load off1
|
|
"movl %6, %%ecx \n\t" // load off3
|
|
" \n\t"
|
|
"movl %7, %%esi \n\t" // load beta
|
|
"movddup (%%esi), %%xmm7 \n\t" // load and duplicate *beta
|
|
" \n\t"
|
|
"movl %0, %%esi \n\t"
|
|
"testl %%esi, %%esi \n\t"
|
|
"je .DCONSIDERKLEFT2 \n\t"
|
|
" \n\t"
|
|
" \n\t"
|
|
".DLOOPKITER2: \n\t"
|
|
" \n\t"
|
|
"addl $64, %%ebp \n\t"
|
|
" \n\t"
|
|
"movlpd (%%edi ), %%xmm0 \n\t" // iteration 0
|
|
"movhpd (%%edi,%%ebx, ), %%xmm0 \n\t"
|
|
"movlpd (%%edi,%%ebx,2), %%xmm1 \n\t"
|
|
"movhpd (%%edi,%%ecx, ), %%xmm1 \n\t"
|
|
"mulpd %%xmm7, %%xmm0 \n\t"
|
|
"mulpd %%xmm7, %%xmm1 \n\t"
|
|
"addl %%eax, %%edi \n\t"
|
|
"movapd %%xmm0, -8 * 8(%%ebp) \n\t"
|
|
"movapd %%xmm1, -6 * 8(%%ebp) \n\t"
|
|
" \n\t"
|
|
"movlpd (%%edx ), %%xmm2 \n\t" // iteration 1
|
|
"movhpd (%%edx,%%ebx, ), %%xmm2 \n\t"
|
|
"movlpd (%%edx,%%ebx,2), %%xmm3 \n\t"
|
|
"movhpd (%%edx,%%ecx, ), %%xmm3 \n\t"
|
|
"mulpd %%xmm7, %%xmm2 \n\t"
|
|
"mulpd %%xmm7, %%xmm3 \n\t"
|
|
"addl %%eax, %%edx \n\t"
|
|
"movapd %%xmm2, -4 * 8(%%ebp) \n\t"
|
|
"movapd %%xmm3, -2 * 8(%%ebp) \n\t"
|
|
" \n\t"
|
|
"decl %%esi \n\t"
|
|
"jne .DLOOPKITER2 \n\t"
|
|
" \n\t"
|
|
" \n\t"
|
|
" \n\t"
|
|
".DCONSIDERKLEFT2: \n\t"
|
|
" \n\t"
|
|
"movl %1, %%esi \n\t"
|
|
"testl %%esi, %%esi \n\t"
|
|
"je .DDONE2 \n\t"
|
|
" \n\t"
|
|
" \n\t"
|
|
" \n\t"
|
|
".DLOOPKLEFT2: \n\t"
|
|
" \n\t"
|
|
"addl $32, %%ebp \n\t"
|
|
" \n\t"
|
|
"movlpd (%%edi ), %%xmm0 \n\t"
|
|
"movhpd (%%edi,%%ebx, ), %%xmm0 \n\t"
|
|
"movlpd (%%edi,%%ebx,2), %%xmm1 \n\t"
|
|
"movhpd (%%edi,%%ecx, ), %%xmm1 \n\t"
|
|
"mulpd %%xmm7, %%xmm0 \n\t"
|
|
"mulpd %%xmm7, %%xmm1 \n\t"
|
|
"addl %%eax, %%edi \n\t"
|
|
"movapd %%xmm0, -4 * 8(%%ebp) \n\t"
|
|
"movapd %%xmm1, -2 * 8(%%ebp) \n\t"
|
|
" \n\t"
|
|
"decl %%esi \n\t"
|
|
"jne .DLOOPKLEFT2 \n\t"
|
|
" \n\t"
|
|
" \n\t"
|
|
" \n\t"
|
|
".DDONE2: \n\t"
|
|
" \n\t"
|
|
: // output operands
|
|
: // input operands
|
|
"m" (n_iter),
|
|
"m" (n_left),
|
|
"m" (alpha1),
|
|
"m" (pi1),
|
|
"m" (ldas),
|
|
"m" (off1),
|
|
"m" (off3),
|
|
"m" (beta)
|
|
: // register clobber list
|
|
"eax", "ebx", "ecx", "edx", "edi", "ebp", "esi",
|
|
"xmm0", "xmm1", "xmm2", "xmm3",
|
|
"xmm4", "xmm5", "xmm6", "xmm7",
|
|
"memory"
|
|
);
|
|
}
|
|
}
|
|
|
|
void bli_cpackm_4xk(
|
|
conj_t conja,
|
|
dim_t n,
|
|
void* beta,
|
|
void* a, inc_t inca, inc_t lda,
|
|
void* p
|
|
)
|
|
{
|
|
bli_check_error_code( BLIS_NOT_YET_IMPLEMENTED );
|
|
}
|
|
|
|
void bli_zpackm_4xk(
|
|
conj_t conja,
|
|
dim_t n,
|
|
void* beta,
|
|
void* a, inc_t inca, inc_t lda,
|
|
void* p
|
|
)
|
|
{
|
|
bli_check_error_code( BLIS_NOT_YET_IMPLEMENTED );
|
|
}
|
|
|