| @@ -161,3 +161,8 @@ In chronological order: | |||
| * Kaustubh Raste <https://github.com/ksraste/> | |||
| * [2016-05-09] DTRSM optimization for MIPS P5600 and I6400 using MSA | |||
| * [2016-05-20] STRSM optimization for MIPS P5600 and I6400 using MSA | |||
| * Abdelrauf <https://github.com/quickwritereader> | |||
| * [2017-01-01] dgemm and dtrmm kernels for IBM z13 | |||
| @@ -0,0 +1,6 @@ | |||
| ifeq ($(CORE), Z13) | |||
| CCOMMON_OPT += -march=z13 -mzvector | |||
| FCOMMON_OPT += -march=z13 -mzvector | |||
| endif | |||
| @@ -106,6 +106,10 @@ Please read GotoBLAS_01Readme.txt | |||
| - **ARMV8**: Experimental | |||
| - **ARM Cortex-A57**: Experimental | |||
| #### IBM zEnterprise System: | |||
| - **Z13**: blas3 for double | |||
| ### Support OS: | |||
| - **GNU/Linux** | |||
| - **MingWin or Visual Studio(CMake)/Windows**: Please read <https://github.com/xianyi/OpenBLAS/wiki/How-to-use-OpenBLAS-in-Microsoft-Visual-Studio>. | |||
| @@ -10,6 +10,7 @@ $hostarch = "x86_64" if ($hostarch eq "amd64"); | |||
| $hostarch = "arm" if ($hostarch =~ /^arm.*/); | |||
| $hostarch = "arm64" if ($hostarch eq "aarch64"); | |||
| $hostarch = "power" if ($hostarch =~ /^(powerpc|ppc).*/); | |||
| $hostarch = "zarch" if ($hostarch eq "s390x"); | |||
| $tmpf = new File::Temp( UNLINK => 1 ); | |||
| $binary = $ENV{"BINARY"}; | |||
| @@ -72,6 +73,7 @@ $architecture = sparc if ($data =~ /ARCH_SPARC/); | |||
| $architecture = ia64 if ($data =~ /ARCH_IA64/); | |||
| $architecture = arm if ($data =~ /ARCH_ARM/); | |||
| $architecture = arm64 if ($data =~ /ARCH_ARM64/); | |||
| $architecture = zarch if ($data =~ /ARCH_ZARCH/); | |||
| $defined = 0; | |||
| @@ -96,6 +98,11 @@ if (($architecture eq "arm") || ($architecture eq "arm64")) { | |||
| $defined = 1; | |||
| } | |||
| if ($architecture eq "zarch") { | |||
| $defined = 1; | |||
| $binary = 64; | |||
| } | |||
| if ($architecture eq "alpha") { | |||
| $defined = 1; | |||
| $binary = 64; | |||
| @@ -187,6 +194,7 @@ $architecture = sparc if ($data =~ /ARCH_SPARC/); | |||
| $architecture = ia64 if ($data =~ /ARCH_IA64/); | |||
| $architecture = arm if ($data =~ /ARCH_ARM/); | |||
| $architecture = arm64 if ($data =~ /ARCH_ARM64/); | |||
| $architecture = zarch if ($data =~ /ARCH_ZARCH/); | |||
| $binformat = bin32; | |||
| $binformat = bin64 if ($data =~ /BINARY_64/); | |||
| @@ -420,6 +420,10 @@ please https://github.com/xianyi/OpenBLAS/issues/246 | |||
| #include "common_arm64.h" | |||
| #endif | |||
| #ifdef ARCH_ZARCH | |||
| #include "common_zarch.h" | |||
| #endif | |||
| #ifndef ASSEMBLER | |||
| #ifdef OS_WINDOWS | |||
| typedef char env_var_t[MAX_PATH]; | |||
| @@ -70,7 +70,7 @@ extern long int syscall (long int __sysno, ...); | |||
| static inline int my_mbind(void *addr, unsigned long len, int mode, | |||
| unsigned long *nodemask, unsigned long maxnode, | |||
| unsigned flags) { | |||
| #if defined (__LSB_VERSION__) | |||
| #if defined (__LSB_VERSION__) || defined(ARCH_ZARCH) | |||
| // So far, LSB (Linux Standard Base) don't support syscall(). | |||
| // https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3482 | |||
| return 0; | |||
| @@ -90,7 +90,7 @@ static inline int my_mbind(void *addr, unsigned long len, int mode, | |||
| } | |||
| static inline int my_set_mempolicy(int mode, const unsigned long *addr, unsigned long flag) { | |||
| #if defined (__LSB_VERSION__) | |||
| #if defined (__LSB_VERSION__) || defined(ARCH_ZARCH) | |||
| // So far, LSB (Linux Standard Base) don't support syscall(). | |||
| // https://lsbbugs.linuxfoundation.org/show_bug.cgi?id=3482 | |||
| return 0; | |||
| @@ -0,0 +1,140 @@ | |||
| /***************************************************************************** | |||
| Copyright (c) 2011-2016, The OpenBLAS Project | |||
| All rights reserved. | |||
| Redistribution and use in source and binary forms, with or without | |||
| modification, are permitted provided that the following conditions are | |||
| met: | |||
| 1. Redistributions of source code must retain the above copyright | |||
| notice, this list of conditions and the following disclaimer. | |||
| 2. 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. | |||
| 3. Neither the name of the OpenBLAS project 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 OWNER 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. | |||
| **********************************************************************************/ | |||
| #ifndef COMMON_ZARCH | |||
| #define COMMON_ZARCH | |||
| #define MB | |||
| //__asm__ __volatile__ ("dmb ish" : : : "memory") | |||
| #define WMB | |||
| //__asm__ __volatile__ ("dmb ishst" : : : "memory") | |||
| #define INLINE inline | |||
| #define RETURN_BY_COMPLEX | |||
| #ifndef ASSEMBLER | |||
| /* | |||
| static void __inline blas_lock(volatile BLASULONG *address){ | |||
| BLASULONG ret; | |||
| do { | |||
| while (*address) {YIELDING;}; | |||
| __asm__ __volatile__( | |||
| "mov x4, #1 \n\t" | |||
| "1: \n\t" | |||
| "ldaxr x2, [%1] \n\t" | |||
| "cbnz x2, 1b \n\t" | |||
| "2: \n\t" | |||
| "stxr w3, x4, [%1] \n\t" | |||
| "cbnz w3, 1b \n\t" | |||
| "mov %0, #0 \n\t" | |||
| : "=r"(ret), "=r"(address) | |||
| : "1"(address) | |||
| : "memory", "x2" , "x3", "x4" | |||
| ); | |||
| } while (ret); | |||
| } | |||
| */ | |||
| //#define BLAS_LOCK_DEFINED | |||
| static inline int blas_quickdivide(blasint x, blasint y){ | |||
| return x / y; | |||
| } | |||
| #if defined(DOUBLE) | |||
| #define GET_IMAGE(res) __asm__ __volatile__("str d1, %0" : "=m"(res) : : "memory") | |||
| #else | |||
| #define GET_IMAGE(res) __asm__ __volatile__("str s1, %0" : "=m"(res) : : "memory") | |||
| #endif | |||
| #define GET_IMAGE_CANCEL | |||
| #endif | |||
| #ifndef F_INTERFACE | |||
| #define REALNAME ASMNAME | |||
| #else | |||
| #define REALNAME ASMFNAME | |||
| #endif | |||
| #if defined(ASSEMBLER) && !defined(NEEDPARAM) | |||
| #define PROLOGUE \ | |||
| .text ;\ | |||
| .align 256 ;\ | |||
| .global REALNAME ;\ | |||
| .type REALNAME, %function ;\ | |||
| REALNAME: | |||
| #define EPILOGUE | |||
| #define PROFCODE | |||
| #endif | |||
| #define SEEK_ADDRESS | |||
| #ifndef PAGESIZE | |||
| #define PAGESIZE ( 4 << 10) | |||
| #endif | |||
| #define HUGE_PAGESIZE ( 4 << 20) | |||
| #if defined(CORTEXA57) | |||
| #define BUFFER_SIZE (20 << 20) | |||
| #else | |||
| #define BUFFER_SIZE (16 << 20) | |||
| #endif | |||
| #define BASE_ADDRESS (START_ADDRESS - BUFFER_SIZE * MAX_CPU_NUMBER) | |||
| #ifndef MAP_ANONYMOUS | |||
| #define MAP_ANONYMOUS MAP_ANON | |||
| #endif | |||
| #endif | |||
| @@ -0,0 +1,93 @@ | |||
| /************************************************************************** | |||
| Copyright (c) 2016, The OpenBLAS Project | |||
| All rights reserved. | |||
| Redistribution and use in source and binary forms, with or without | |||
| modification, are permitted provided that the following conditions are | |||
| met: | |||
| 1. Redistributions of source code must retain the above copyright | |||
| notice, this list of conditions and the following disclaimer. | |||
| 2. 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. | |||
| 3. Neither the name of the OpenBLAS project 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 OPENBLAS PROJECT 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 <string.h> | |||
| #define CPU_GENERIC 0 | |||
| #define CPU_Z13 1 | |||
| static char *cpuname[] = { | |||
| "ZARCH_GENERIC", | |||
| "Z13" | |||
| }; | |||
| static char *cpuname_lower[] = { | |||
| "zarch_generic", | |||
| "z13" | |||
| }; | |||
| int detect(void) | |||
| { | |||
| // return CPU_GENERIC; | |||
| return CPU_Z13; | |||
| } | |||
| void get_libname(void) | |||
| { | |||
| int d = detect(); | |||
| printf("%s", cpuname_lower[d]); | |||
| } | |||
| char *get_corename(void) | |||
| { | |||
| return cpuname[detect()]; | |||
| } | |||
| void get_architecture(void) | |||
| { | |||
| printf("ZARCH"); | |||
| } | |||
| void get_subarchitecture(void) | |||
| { | |||
| int d = detect(); | |||
| printf("%s", cpuname[d]); | |||
| } | |||
| void get_subdirname(void) | |||
| { | |||
| printf("zarch"); | |||
| } | |||
| void get_cpuconfig(void) | |||
| { | |||
| int d = detect(); | |||
| switch (d){ | |||
| case CPU_GENERIC: | |||
| printf("#define ZARCH_GENERIC\n"); | |||
| printf("#define DTB_DEFAULT_ENTRIES 64\n"); | |||
| break; | |||
| case CPU_Z13: | |||
| printf("#define Z13\n"); | |||
| printf("#define DTB_DEFAULT_ENTRIES 64\n"); | |||
| break; | |||
| } | |||
| } | |||
| @@ -105,6 +105,10 @@ ARCH_X86_64 | |||
| ARCH_POWER | |||
| #endif | |||
| #if defined(__s390x__) || defined(__zarch__) | |||
| ARCH_ZARCH | |||
| #endif | |||
| #ifdef __mips64 | |||
| ARCH_MIPS64 | |||
| #endif | |||
| @@ -907,6 +907,12 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |||
| #define OPENBLAS_SUPPORTED | |||
| #endif | |||
| #if defined(__zarch__) || defined(__s390x__) | |||
| #define ZARCH | |||
| #include "cpuid_zarch.c" | |||
| #define OPENBLAS_SUPPORTED | |||
| #endif | |||
| #ifdef INTEL_AMD | |||
| #include "cpuid_x86.c" | |||
| #define OPENBLAS_SUPPORTED | |||
| @@ -1006,7 +1012,7 @@ int main(int argc, char *argv[]){ | |||
| #ifdef FORCE | |||
| printf("CORE=%s\n", CORENAME); | |||
| #else | |||
| #if defined(INTEL_AMD) || defined(POWER) || defined(__mips__) || defined(__arm__) || defined(__aarch64__) | |||
| #if defined(INTEL_AMD) || defined(POWER) || defined(__mips__) || defined(__arm__) || defined(__aarch64__) || defined(ZARCH) | |||
| printf("CORE=%s\n", get_corename()); | |||
| #endif | |||
| #endif | |||
| @@ -1114,7 +1120,7 @@ int main(int argc, char *argv[]){ | |||
| #ifdef FORCE | |||
| printf("#define CHAR_CORENAME \"%s\"\n", CORENAME); | |||
| #else | |||
| #if defined(INTEL_AMD) || defined(POWER) || defined(__mips__) || defined(__arm__) || defined(__aarch64__) | |||
| #if defined(INTEL_AMD) || defined(POWER) || defined(__mips__) || defined(__arm__) || defined(__aarch64__) || defined(ZARCH) | |||
| printf("#define CHAR_CORENAME \"%s\"\n", get_corename()); | |||
| #endif | |||
| #endif | |||
| @@ -36,6 +36,10 @@ ifeq ($(CORE), POWER8) | |||
| USE_TRMM = 1 | |||
| endif | |||
| ifeq ($(CORE), Z13) | |||
| USE_TRMM = 1 | |||
| endif | |||
| @@ -0,0 +1,30 @@ | |||
| ifndef SCABS_KERNEL | |||
| SCABS_KERNEL = ../generic/cabs.c | |||
| endif | |||
| ifndef DCABS_KERNEL | |||
| DCABS_KERNEL = ../generic/cabs.c | |||
| endif | |||
| ifndef QCABS_KERNEL | |||
| QCABS_KERNEL = ../generic/cabs.c | |||
| endif | |||
| ifndef LSAME_KERNEL | |||
| LSAME_KERNEL = ../generic/lsame.c | |||
| endif | |||
| ifndef SGEMM_BETA | |||
| SGEMM_BETA = ../generic/gemm_beta.c | |||
| endif | |||
| ifndef DGEMM_BETA | |||
| DGEMM_BETA = ../generic/gemm_beta.c | |||
| endif | |||
| ifndef CGEMM_BETA | |||
| CGEMM_BETA = ../generic/zgemm_beta.c | |||
| endif | |||
| ifndef ZGEMM_BETA | |||
| ZGEMM_BETA = ../generic/zgemm_beta.c | |||
| endif | |||
| @@ -0,0 +1,141 @@ | |||
| SAMAXKERNEL = ../arm/amax.c | |||
| DAMAXKERNEL = ../arm/amax.c | |||
| CAMAXKERNEL = ../arm/zamax.c | |||
| ZAMAXKERNEL = ../arm/zamax.c | |||
| SAMINKERNEL = ../arm/amin.c | |||
| DAMINKERNEL = ../arm/amin.c | |||
| CAMINKERNEL = ../arm/zamin.c | |||
| ZAMINKERNEL = ../arm/zamin.c | |||
| SMAXKERNEL = ../arm/max.c | |||
| DMAXKERNEL = ../arm/max.c | |||
| SMINKERNEL = ../arm/min.c | |||
| DMINKERNEL = ../arm/min.c | |||
| ISAMAXKERNEL = ../arm/iamax.c | |||
| IDAMAXKERNEL = ../arm/iamax.c | |||
| ICAMAXKERNEL = ../arm/izamax.c | |||
| IZAMAXKERNEL = ../arm/izamax.c | |||
| ISAMINKERNEL = ../arm/iamin.c | |||
| IDAMINKERNEL = ../arm/iamin.c | |||
| ICAMINKERNEL = ../arm/izamin.c | |||
| IZAMINKERNEL = ../arm/izamin.c | |||
| ISMAXKERNEL = ../arm/imax.c | |||
| IDMAXKERNEL = ../arm/imax.c | |||
| ISMINKERNEL = ../arm/imin.c | |||
| IDMINKERNEL = ../arm/imin.c | |||
| SASUMKERNEL = ../arm/asum.c | |||
| DASUMKERNEL = ../arm/asum.c | |||
| CASUMKERNEL = ../arm/zasum.c | |||
| ZASUMKERNEL = ../arm/zasum.c | |||
| SAXPYKERNEL = ../arm/axpy.c | |||
| DAXPYKERNEL = ../arm/axpy.c | |||
| CAXPYKERNEL = ../arm/zaxpy.c | |||
| ZAXPYKERNEL = ../arm/zaxpy.c | |||
| SCOPYKERNEL = ../arm/copy.c | |||
| DCOPYKERNEL = ../arm/copy.c | |||
| CCOPYKERNEL = ../arm/zcopy.c | |||
| ZCOPYKERNEL = ../arm/zcopy.c | |||
| SDOTKERNEL = ../arm/dot.c | |||
| DDOTKERNEL = ../arm/dot.c | |||
| CDOTKERNEL = ../arm/zdot.c | |||
| ZDOTKERNEL = ../arm/zdot.c | |||
| SNRM2KERNEL = ../arm/nrm2.c | |||
| DNRM2KERNEL = ../arm/nrm2.c | |||
| CNRM2KERNEL = ../arm/znrm2.c | |||
| ZNRM2KERNEL = ../arm/znrm2.c | |||
| SROTKERNEL = ../arm/rot.c | |||
| DROTKERNEL = ../arm/rot.c | |||
| CROTKERNEL = ../arm/zrot.c | |||
| ZROTKERNEL = ../arm/zrot.c | |||
| SSCALKERNEL = ../arm/scal.c | |||
| DSCALKERNEL = ../arm/scal.c | |||
| CSCALKERNEL = ../arm/zscal.c | |||
| ZSCALKERNEL = ../arm/zscal.c | |||
| SSWAPKERNEL = ../arm/swap.c | |||
| DSWAPKERNEL = ../arm/swap.c | |||
| CSWAPKERNEL = ../arm/zswap.c | |||
| ZSWAPKERNEL = ../arm/zswap.c | |||
| SGEMVNKERNEL = ../arm/gemv_n.c | |||
| DGEMVNKERNEL = ../arm/gemv_n.c | |||
| CGEMVNKERNEL = ../arm/zgemv_n.c | |||
| ZGEMVNKERNEL = ../arm/zgemv_n.c | |||
| SGEMVTKERNEL = ../arm/gemv_t.c | |||
| DGEMVTKERNEL = ../arm/gemv_t.c | |||
| CGEMVTKERNEL = ../arm/zgemv_t.c | |||
| ZGEMVTKERNEL = ../arm/zgemv_t.c | |||
| STRMMKERNEL = ../generic/trmmkernel_2x2.c | |||
| DTRMMKERNEL = trmm8x4V.S | |||
| CTRMMKERNEL = ../generic/ztrmmkernel_2x2.c | |||
| ZTRMMKERNEL = ../generic/ztrmmkernel_2x2.c | |||
| SGEMMKERNEL = ../generic/gemmkernel_2x2.c | |||
| SGEMMONCOPY = ../generic/gemm_ncopy_2.c | |||
| SGEMMOTCOPY = ../generic/gemm_tcopy_2.c | |||
| SGEMMONCOPYOBJ = sgemm_oncopy.o | |||
| SGEMMOTCOPYOBJ = sgemm_otcopy.o | |||
| DGEMMKERNEL = gemm8x4V.S | |||
| DGEMMINCOPY = ../generic/gemm_ncopy_8.c | |||
| DGEMMITCOPY = ../generic/gemm_tcopy_8.c | |||
| DGEMMONCOPY = ../generic/gemm_ncopy_4.c | |||
| DGEMMOTCOPY = ../generic/gemm_tcopy_4.c | |||
| DGEMMINCOPYOBJ = dgemm_incopy.o | |||
| DGEMMITCOPYOBJ = dgemm_itcopy.o | |||
| DGEMMONCOPYOBJ = dgemm_oncopy.o | |||
| DGEMMOTCOPYOBJ = dgemm_otcopy.o | |||
| CGEMMKERNEL = ../generic/zgemmkernel_2x2.c | |||
| CGEMMONCOPY = ../generic/zgemm_ncopy_2.c | |||
| CGEMMOTCOPY = ../generic/zgemm_tcopy_2.c | |||
| CGEMMONCOPYOBJ = cgemm_oncopy.o | |||
| CGEMMOTCOPYOBJ = cgemm_otcopy.o | |||
| ZGEMMKERNEL = ../generic/zgemmkernel_2x2.c | |||
| ZGEMMONCOPY = ../generic/zgemm_ncopy_2.c | |||
| ZGEMMOTCOPY = ../generic/zgemm_tcopy_2.c | |||
| ZGEMMONCOPYOBJ = zgemm_oncopy.o | |||
| ZGEMMOTCOPYOBJ = zgemm_otcopy.o | |||
| STRSMKERNEL_LN = ../generic/trsm_kernel_LN.c | |||
| STRSMKERNEL_LT = ../generic/trsm_kernel_LT.c | |||
| STRSMKERNEL_RN = ../generic/trsm_kernel_RN.c | |||
| STRSMKERNEL_RT = ../generic/trsm_kernel_RT.c | |||
| DTRSMKERNEL_LN = ../generic/trsm_kernel_LN.c | |||
| DTRSMKERNEL_LT = ../generic/trsm_kernel_LT.c | |||
| DTRSMKERNEL_RN = ../generic/trsm_kernel_RN.c | |||
| DTRSMKERNEL_RT = ../generic/trsm_kernel_RT.c | |||
| CTRSMKERNEL_LN = ../generic/trsm_kernel_LN.c | |||
| CTRSMKERNEL_LT = ../generic/trsm_kernel_LT.c | |||
| CTRSMKERNEL_RN = ../generic/trsm_kernel_RN.c | |||
| CTRSMKERNEL_RT = ../generic/trsm_kernel_RT.c | |||
| ZTRSMKERNEL_LN = ../generic/trsm_kernel_LN.c | |||
| ZTRSMKERNEL_LT = ../generic/trsm_kernel_LT.c | |||
| ZTRSMKERNEL_RN = ../generic/trsm_kernel_RN.c | |||
| ZTRSMKERNEL_RT = ../generic/trsm_kernel_RT.c | |||
| @@ -0,0 +1,133 @@ | |||
| SAMAXKERNEL = ../arm/amax.c | |||
| DAMAXKERNEL = ../arm/amax.c | |||
| CAMAXKERNEL = ../arm/zamax.c | |||
| ZAMAXKERNEL = ../arm/zamax.c | |||
| SAMINKERNEL = ../arm/amin.c | |||
| DAMINKERNEL = ../arm/amin.c | |||
| CAMINKERNEL = ../arm/zamin.c | |||
| ZAMINKERNEL = ../arm/zamin.c | |||
| SMAXKERNEL = ../arm/max.c | |||
| DMAXKERNEL = ../arm/max.c | |||
| SMINKERNEL = ../arm/min.c | |||
| DMINKERNEL = ../arm/min.c | |||
| ISAMAXKERNEL = ../arm/iamax.c | |||
| IDAMAXKERNEL = ../arm/iamax.c | |||
| ICAMAXKERNEL = ../arm/izamax.c | |||
| IZAMAXKERNEL = ../arm/izamax.c | |||
| ISAMINKERNEL = ../arm/iamin.c | |||
| IDAMINKERNEL = ../arm/iamin.c | |||
| ICAMINKERNEL = ../arm/izamin.c | |||
| IZAMINKERNEL = ../arm/izamin.c | |||
| ISMAXKERNEL = ../arm/imax.c | |||
| IDMAXKERNEL = ../arm/imax.c | |||
| ISMINKERNEL = ../arm/imin.c | |||
| IDMINKERNEL = ../arm/imin.c | |||
| SASUMKERNEL = ../arm/asum.c | |||
| DASUMKERNEL = ../arm/asum.c | |||
| CASUMKERNEL = ../arm/zasum.c | |||
| ZASUMKERNEL = ../arm/zasum.c | |||
| SAXPYKERNEL = ../arm/axpy.c | |||
| DAXPYKERNEL = ../arm/axpy.c | |||
| CAXPYKERNEL = ../arm/zaxpy.c | |||
| ZAXPYKERNEL = ../arm/zaxpy.c | |||
| SCOPYKERNEL = ../arm/copy.c | |||
| DCOPYKERNEL = ../arm/copy.c | |||
| CCOPYKERNEL = ../arm/zcopy.c | |||
| ZCOPYKERNEL = ../arm/zcopy.c | |||
| SDOTKERNEL = ../arm/dot.c | |||
| DDOTKERNEL = ../arm/dot.c | |||
| CDOTKERNEL = ../arm/zdot.c | |||
| ZDOTKERNEL = ../arm/zdot.c | |||
| SNRM2KERNEL = ../arm/nrm2.c | |||
| DNRM2KERNEL = ../arm/nrm2.c | |||
| CNRM2KERNEL = ../arm/znrm2.c | |||
| ZNRM2KERNEL = ../arm/znrm2.c | |||
| SROTKERNEL = ../arm/rot.c | |||
| DROTKERNEL = ../arm/rot.c | |||
| CROTKERNEL = ../arm/zrot.c | |||
| ZROTKERNEL = ../arm/zrot.c | |||
| SSCALKERNEL = ../arm/scal.c | |||
| DSCALKERNEL = ../arm/scal.c | |||
| CSCALKERNEL = ../arm/zscal.c | |||
| ZSCALKERNEL = ../arm/zscal.c | |||
| SSWAPKERNEL = ../arm/swap.c | |||
| DSWAPKERNEL = ../arm/swap.c | |||
| CSWAPKERNEL = ../arm/zswap.c | |||
| ZSWAPKERNEL = ../arm/zswap.c | |||
| SGEMVNKERNEL = ../arm/gemv_n.c | |||
| DGEMVNKERNEL = ../arm/gemv_n.c | |||
| CGEMVNKERNEL = ../arm/zgemv_n.c | |||
| ZGEMVNKERNEL = ../arm/zgemv_n.c | |||
| SGEMVTKERNEL = ../arm/gemv_t.c | |||
| DGEMVTKERNEL = ../arm/gemv_t.c | |||
| CGEMVTKERNEL = ../arm/zgemv_t.c | |||
| ZGEMVTKERNEL = ../arm/zgemv_t.c | |||
| STRMMKERNEL = ../generic/trmmkernel_2x2.c | |||
| DTRMMKERNEL = ../generic/trmmkernel_2x2.c | |||
| CTRMMKERNEL = ../generic/ztrmmkernel_2x2.c | |||
| ZTRMMKERNEL = ../generic/ztrmmkernel_2x2.c | |||
| SGEMMKERNEL = ../generic/gemmkernel_2x2.c | |||
| SGEMMONCOPY = ../generic/gemm_ncopy_2.c | |||
| SGEMMOTCOPY = ../generic/gemm_tcopy_2.c | |||
| SGEMMONCOPYOBJ = sgemm_oncopy.o | |||
| SGEMMOTCOPYOBJ = sgemm_otcopy.o | |||
| DGEMMKERNEL = ../generic/gemmkernel_2x2.c | |||
| DGEMMONCOPY = ../generic/gemm_ncopy_2.c | |||
| DGEMMOTCOPY = ../generic/gemm_tcopy_2.c | |||
| DGEMMONCOPYOBJ = dgemm_oncopy.o | |||
| DGEMMOTCOPYOBJ = dgemm_otcopy.o | |||
| CGEMMKERNEL = ../generic/zgemmkernel_2x2.c | |||
| CGEMMONCOPY = ../generic/zgemm_ncopy_2.c | |||
| CGEMMOTCOPY = ../generic/zgemm_tcopy_2.c | |||
| CGEMMONCOPYOBJ = cgemm_oncopy.o | |||
| CGEMMOTCOPYOBJ = cgemm_otcopy.o | |||
| ZGEMMKERNEL = ../generic/zgemmkernel_2x2.c | |||
| ZGEMMONCOPY = ../generic/zgemm_ncopy_2.c | |||
| ZGEMMOTCOPY = ../generic/zgemm_tcopy_2.c | |||
| ZGEMMONCOPYOBJ = zgemm_oncopy.o | |||
| ZGEMMOTCOPYOBJ = zgemm_otcopy.o | |||
| STRSMKERNEL_LN = ../generic/trsm_kernel_LN.c | |||
| STRSMKERNEL_LT = ../generic/trsm_kernel_LT.c | |||
| STRSMKERNEL_RN = ../generic/trsm_kernel_RN.c | |||
| STRSMKERNEL_RT = ../generic/trsm_kernel_RT.c | |||
| DTRSMKERNEL_LN = ../generic/trsm_kernel_LN.c | |||
| DTRSMKERNEL_LT = ../generic/trsm_kernel_LT.c | |||
| DTRSMKERNEL_RN = ../generic/trsm_kernel_RN.c | |||
| DTRSMKERNEL_RT = ../generic/trsm_kernel_RT.c | |||
| CTRSMKERNEL_LN = ../generic/trsm_kernel_LN.c | |||
| CTRSMKERNEL_LT = ../generic/trsm_kernel_LT.c | |||
| CTRSMKERNEL_RN = ../generic/trsm_kernel_RN.c | |||
| CTRSMKERNEL_RT = ../generic/trsm_kernel_RT.c | |||
| ZTRSMKERNEL_LN = ../generic/trsm_kernel_LN.c | |||
| ZTRSMKERNEL_LT = ../generic/trsm_kernel_LT.c | |||
| ZTRSMKERNEL_RN = ../generic/trsm_kernel_RN.c | |||
| ZTRSMKERNEL_RT = ../generic/trsm_kernel_RT.c | |||
| @@ -0,0 +1,2 @@ | |||
| clean :: | |||
| @@ -0,0 +1,615 @@ | |||
| /*************************************************************************** | |||
| Copyright (c) 2013-2017, The OpenBLAS Project | |||
| All rights reserved. | |||
| Redistribution and use in source and binary forms, with or without | |||
| modification, are permitted provided that the following conditions are | |||
| met: | |||
| 1. Redistributions of source code must retain the above copyright | |||
| notice, this list of conditions and the following disclaimer. | |||
| 2. 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. | |||
| 3. Neither the name of the OpenBLAS project 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 OPENBLAS PROJECT 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. | |||
| *****************************************************************************/ | |||
| /************************************************************************************** | |||
| * 2017/01/01 AbdelRauf (quickwritereader@gmail.com) | |||
| * BLASTEST : OK | |||
| * CTEST : OK | |||
| * TEST : OK | |||
| **************************************************************************************/ | |||
| /*********************************************************************/ | |||
| /* Copyright 2009, 2010 The University of Texas at Austin. */ | |||
| /* All rights reserved. */ | |||
| /* */ | |||
| /* Redistribution and use in source and binary forms, with or */ | |||
| /* without modification, are permitted provided that the following */ | |||
| /* conditions are met: */ | |||
| /* */ | |||
| /* 1. Redistributions of source code must retain the above */ | |||
| /* copyright notice, this list of conditions and the following */ | |||
| /* disclaimer. */ | |||
| /* */ | |||
| /* 2. 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. */ | |||
| /* */ | |||
| /* THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY OF TEXAS AT */ | |||
| /* AUSTIN ``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 UNIVERSITY OF TEXAS AT */ | |||
| /* AUSTIN 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. */ | |||
| /* */ | |||
| /* The views and conclusions contained in the software and */ | |||
| /* documentation are those of the authors and should not be */ | |||
| /* interpreted as representing official policies, either expressed */ | |||
| /* or implied, of The University of Texas at Austin. */ | |||
| /*********************************************************************/ | |||
| #define ASSEMBLER | |||
| #include "common.h" | |||
| /************** Notes ON IBM abi and IBM assembly********************************************** | |||
| * General registers r0 and r1 should be used internally whenever possible | |||
| * General registers r2 to r5 should be second choice | |||
| * General registers r12 to r15 should only be used for their standard function. | |||
| * r0 should not be used as address disp register | |||
| #BLASLONG bm,BLASLONG bn,BLASLONG bk,FLOAT alpha,FLOAT* ba,FLOAT* bb,FLOAT* C,BLASLONG ldc | |||
| ##bm=r2,bn=r3, bk=r4, alpha=f0,ba=r5,bb=r6,stack[160] ,ldc=stack[168] | |||
| **********************************************************************************************/ | |||
| #define BM %r2 | |||
| #define BM_CUR %r0 | |||
| #define BN %r3 | |||
| #define BN_CUR %r10 | |||
| #define BK %r4 | |||
| #define LDC_BYTE %r8 | |||
| #define ALPHA %f0 | |||
| #define ALPHA_VECT %v0 | |||
| #define LOCAL_VAR1 %r9 | |||
| #define LOCAL_VAR2 %r1 | |||
| #define LOCAL_VAR3 %r11 | |||
| #define A %r5 | |||
| #define B %r6 | |||
| #define CIJ %r7 | |||
| #define CIJ_LOCAL %r12 | |||
| #define ALIGN_4 .align 16 | |||
| #define ALIGN_2 .align 8 | |||
| #define PREFETCH_INS 1 | |||
| #include "kernelMacros.S" | |||
| /***********************************DGEMM***********************************************************/ | |||
| PROLOGUE | |||
| stmg %r6,%r12,40(%r15) | |||
| lg CIJ, 160(%r15) | |||
| lg LOCAL_VAR1, 168(%r15) | |||
| srlg BN_CUR,BN,2 | |||
| vrepg ALPHA_VECT,ALPHA_VECT,0 /*replicate alpha which in f0*/ | |||
| sllg LDC_BYTE, LOCAL_VAR1,3 /*calculate lcd stride with bytes double=8 x<<3 */ | |||
| cijle BN_CUR,0,.LX2 | |||
| ALIGN_4 | |||
| .LX4_BN: | |||
| #if defined(PREFETCH_INS) | |||
| pfd 1, 0(A) | |||
| pfd 1, 256(A) | |||
| pfd 1, 0(B) | |||
| pfd 1, 256(B) | |||
| #endif | |||
| srlg BM_CUR,BM,3 | |||
| lgr LOCAL_VAR3,A | |||
| lgr CIJ_LOCAL,CIJ | |||
| cijle BM_CUR,0,.L4x4 | |||
| ALIGN_4 | |||
| .L8x4_BM: /*BM_CUR LOOP */ | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| ZERO_CVEC_8x4 | |||
| cijle LOCAL_VAR1,0,.L8x4_mod | |||
| ALIGN_4 | |||
| .L8x4_4_BK: /*BK_CUR LOOP */ | |||
| #if defined(PREFETCH_INS) | |||
| pfd 1, 512(LOCAL_VAR3) | |||
| #endif | |||
| CALC_8x4_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| #if defined(PREFETCH_INS) | |||
| pfd 1, 512(LOCAL_VAR2) | |||
| #endif | |||
| brctg LOCAL_VAR1,.L8x4_4_BK | |||
| ALIGN_4 | |||
| .L8x4_mod: | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| jz .L8x4_BK_Store | |||
| ALIGN_4 | |||
| .L8x4_BK: /*BK_CUR LOOP */ | |||
| CALC_8x4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L8x4_BK | |||
| ALIGN_4 | |||
| .L8x4_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_8x4 ALPHA_VECT,CIJ_LOCAL, LDC_BYTE | |||
| brctg BM_CUR,.L8x4_BM | |||
| ALIGN_4 | |||
| .L4x4: | |||
| tmll BM,4 | |||
| jz .L2x4 | |||
| ALIGN_4 | |||
| .L4x4_BM: /*BM start*/ | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| ZERO_CVEC_4x4 | |||
| cijle LOCAL_VAR1,0,.L4x4_mod | |||
| ALIGN_4 | |||
| .L4x4_4_BK: /*BK_CUR LOOP */ | |||
| CALC_4x4_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L4x4_4_BK | |||
| ALIGN_4 | |||
| .L4x4_mod: | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| jz .L4x4_BK_Store | |||
| ALIGN_4 | |||
| .L4x4_BK: /*BK_CUR LOOP */ | |||
| CALC_4x4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L4x4_BK | |||
| ALIGN_4 | |||
| .L4x4_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_4x4 ALPHA_VECT ,CIJ_LOCAL, LDC_BYTE | |||
| ALIGN_2 | |||
| .L2x4: | |||
| tmll BM,2 | |||
| jz .L1x4 | |||
| ALIGN_4 | |||
| .L2x4_BM: /*BM start*/ | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| ZERO_CVEC_2x4 | |||
| cijle LOCAL_VAR1,0,.L2x4_mod | |||
| ALIGN_4 | |||
| .L2x4_4_BK: /*BK_CUR LOOP */ | |||
| CALC_2x4_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L2x4_4_BK | |||
| ALIGN_4 | |||
| .L2x4_mod: | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| jz .L2x4_BK_Store | |||
| ALIGN_4 | |||
| .L2x4_BK: /*BK_CUR LOOP */ | |||
| CALC_2x4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L2x4_BK | |||
| ALIGN_4 | |||
| .L2x4_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_2x4 ALPHA_VECT ,CIJ_LOCAL, LDC_BYTE | |||
| ALIGN_4 | |||
| .L1x4: | |||
| tmll BM,1 | |||
| jz .Lx4_INNER_END | |||
| ALIGN_4 | |||
| .L1x4_BM: /*BM start*/ | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| ZERO_CVEC_1x4 | |||
| cijle LOCAL_VAR1,0,.L1x4_mod | |||
| ALIGN_4 | |||
| .L1x4_4_BK: /*BK_CUR LOOP */ | |||
| CALC_1x4_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L1x4_4_BK | |||
| ALIGN_4 | |||
| .L1x4_mod: | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| jz .L1x4_BK_Store | |||
| ALIGN_4 | |||
| .L1x4_BK: /*BK_CUR LOOP */ | |||
| CALC_1x4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L1x4_BK | |||
| ALIGN_4 | |||
| .L1x4_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_1x4 ALPHA_VECT ,CIJ_LOCAL, LDC_BYTE | |||
| ALIGN_2 | |||
| .Lx4_INNER_END: | |||
| /*add LDC_BYTE_COPY to new*/ | |||
| sllg LOCAL_VAR1,LDC_BYTE,2 /*multiply*4 */ | |||
| sllg LOCAL_VAR2,BK,5 /*muyliply*4*sizeof(double) =multiply*32* 2**5 */ | |||
| la CIJ,0(CIJ,LOCAL_VAR1) /*refresh CIJ=CIJ+LDC_BYTE*4*/ | |||
| la B,0(B,LOCAL_VAR2) /*refresh B=B+Bk*4*sizeof(double) */ | |||
| brctg BN_CUR,.LX4_BN | |||
| /*********************************X2 SECTION************************************************/ | |||
| ALIGN_4 | |||
| .LX2: | |||
| tmll BN,2 | |||
| jz .Lx1 | |||
| ALIGN_4 | |||
| .Lx2_BN: | |||
| srlg BM_CUR,BM,3 | |||
| lgr LOCAL_VAR3,A | |||
| lgr CIJ_LOCAL,CIJ | |||
| cijle BM_CUR,0,.L4x2 | |||
| ALIGN_4 | |||
| .L8x2_BM: /*BM_CUR LOOP */ | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| ZERO_CVEC_8x2 | |||
| cijle LOCAL_VAR1,0,.L8x2_mod | |||
| ALIGN_4 | |||
| .L8x2_4_BK: /*BK_CUR LOOP */ | |||
| #if defined(PREFETCH_INS) | |||
| pfd 1, 256(LOCAL_VAR3) | |||
| pfd 1,64(LOCAL_VAR2) | |||
| #endif | |||
| CALC_8x2_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L8x2_4_BK | |||
| ALIGN_4 | |||
| .L8x2_mod: | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| jz .L8x2_BK_Store | |||
| ALIGN_4 | |||
| .L8x2_BK: /*BK_CUR LOOP */ | |||
| CALC_8x2 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L8x2_BK | |||
| ALIGN_4 | |||
| .L8x2_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_8x2 ALPHA_VECT,CIJ_LOCAL, LDC_BYTE | |||
| ALIGN_4 | |||
| brctg BM_CUR,.L8x2_BM | |||
| ALIGN_2 | |||
| .L4x2: | |||
| tmll BM,4 | |||
| jz .L2x2 | |||
| ALIGN_4 | |||
| .L4x2_BM: /*BM start*/ | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| ZERO_CVEC_4x2 | |||
| cijle LOCAL_VAR1,0,.L4x2_mod | |||
| ALIGN_4 | |||
| .L4x2_4_BK: /*BK_CUR LOOP */ | |||
| CALC_4x2_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L4x2_4_BK | |||
| ALIGN_4 | |||
| .L4x2_mod: | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| jz .L4x2_BK_Store | |||
| ALIGN_4 | |||
| .L4x2_BK: /*BK_CUR LOOP */ | |||
| CALC_4x2 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L4x2_BK | |||
| ALIGN_4 | |||
| .L4x2_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_4x2 ALPHA_VECT ,CIJ_LOCAL, LDC_BYTE | |||
| ALIGN_2 | |||
| .L2x2: | |||
| tmll BM,2 | |||
| jz .L1x2 | |||
| ALIGN_4 | |||
| .L2x2_BM: /*BM start*/ | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| ZERO_CVEC_2x2 | |||
| cijle LOCAL_VAR1,0,.L2x2_mod | |||
| ALIGN_4 | |||
| .L2x2_4_BK: /*BK_CUR LOOP */ | |||
| CALC_2x2_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L2x2_4_BK | |||
| ALIGN_4 | |||
| .L2x2_mod: | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| jz .L2x2_BK_Store | |||
| ALIGN_4 | |||
| .L2x2_BK: /*BK_CUR LOOP */ | |||
| CALC_2x2 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L2x2_BK | |||
| ALIGN_4 | |||
| .L2x2_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_2x2 ALPHA_VECT ,CIJ_LOCAL, LDC_BYTE | |||
| ALIGN_2 | |||
| .L1x2: | |||
| tmll BM,1 | |||
| jz .Lx2_INNER_END | |||
| ALIGN_4 | |||
| .L1x2_BM: /*BM start*/ | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| ZERO_CVEC_1x2 | |||
| cijle LOCAL_VAR1,0,.L1x2_mod | |||
| ALIGN_4 | |||
| .L1x2_4_BK: /*BK_CUR LOOP */ | |||
| CALC_1x2_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L1x2_4_BK | |||
| ALIGN_4 | |||
| .L1x2_mod: | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| jz .L1x2_BK_Store | |||
| ALIGN_4 | |||
| .L1x2_BK: /*BK_CUR LOOP */ | |||
| CALC_1x2 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L1x2_BK | |||
| ALIGN_4 | |||
| .L1x2_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_1x2 ALPHA_VECT ,CIJ_LOCAL, LDC_BYTE | |||
| ALIGN_2 | |||
| .Lx2_INNER_END: | |||
| /*add LDC_BYTE_COPY to new*/ | |||
| la LOCAL_VAR1,0(LDC_BYTE,LDC_BYTE) /*multiply*2 */ | |||
| sllg LOCAL_VAR2,BK,4 /*muyliply*2*sizeof(double) =multiply*16* 2**4 */ | |||
| la CIJ,0(CIJ,LOCAL_VAR1) /*refresh CIJ=CIJ+LDC_BYTE*4*/ | |||
| la B,0(B,LOCAL_VAR2) /*refresh B=B+Bk*4*sizeof(double) */ | |||
| /*********************************X1 SECTION************************************************/ | |||
| ALIGN_2 | |||
| .Lx1: | |||
| tmll BN,1 | |||
| jz .L_FUNC_END | |||
| ALIGN_4 | |||
| .Lx1_BN: | |||
| srlg BM_CUR,BM,3 | |||
| lgr LOCAL_VAR3,A | |||
| lgr CIJ_LOCAL,CIJ | |||
| cijle BM_CUR,0,.L4x1 | |||
| ALIGN_4 | |||
| .L8x1_BM: /*BM_CUR LOOP */ | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| ZERO_CVEC_8x1 | |||
| cijle LOCAL_VAR1,0,.L8x1_mod | |||
| ALIGN_4 | |||
| .L8x1_4_BK: /*BK_CUR LOOP */ | |||
| #if defined(PREFETCH_INS) | |||
| pfd 1, 256(LOCAL_VAR3) | |||
| #endif | |||
| CALC_8x1_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L8x1_4_BK | |||
| ALIGN_4 | |||
| .L8x1_mod: | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| jz .L8x1_BK_Store | |||
| ALIGN_4 | |||
| .L8x1_BK: /*BK_CUR LOOP */ | |||
| CALC_8x1 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L8x1_BK | |||
| ALIGN_4 | |||
| .L8x1_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_8x1 ALPHA_VECT,CIJ_LOCAL, LDC_BYTE | |||
| ALIGN_4 | |||
| brctg BM_CUR,.L8x1_BM | |||
| ALIGN_2 | |||
| .L4x1: | |||
| tmll BM,4 | |||
| jz .L2x1 | |||
| ALIGN_4 | |||
| .L4x1_BM: /*BM start*/ | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| ZERO_CVEC_4x1 | |||
| cijle LOCAL_VAR1,0,.L4x1_mod | |||
| ALIGN_4 | |||
| .L4x1_4_BK: /*BK_CUR LOOP */ | |||
| CALC_4x1_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L4x1_4_BK | |||
| ALIGN_4 | |||
| .L4x1_mod: | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| jz .L4x1_BK_Store | |||
| ALIGN_4 | |||
| .L4x1_BK: /*BK_CUR LOOP */ | |||
| CALC_4x1 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L4x1_BK | |||
| ALIGN_4 | |||
| .L4x1_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_4x1 ALPHA_VECT ,CIJ_LOCAL, LDC_BYTE | |||
| ALIGN_2 | |||
| .L2x1: | |||
| tmll BM,2 | |||
| jz .L1x1 | |||
| ALIGN_4 | |||
| .L2x1_BM: /*BM start*/ | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| ZERO_CVEC_2x1 | |||
| cijle LOCAL_VAR1,0,.L2x1_mod | |||
| ALIGN_4 | |||
| .L2x1_4_BK: /*BK_CUR LOOP */ | |||
| CALC_2x1_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L2x1_4_BK | |||
| ALIGN_4 | |||
| .L2x1_mod: | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| jz .L2x1_BK_Store | |||
| ALIGN_4 | |||
| .L2x1_BK: /*BK_CUR LOOP */ | |||
| CALC_2x1 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L2x1_BK | |||
| ALIGN_4 | |||
| .L2x1_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_2x1 ALPHA_VECT ,CIJ_LOCAL, LDC_BYTE | |||
| ALIGN_2 | |||
| .L1x1: | |||
| tmll BM, 1 | |||
| jz .Lx1_INNER_END | |||
| ALIGN_4 | |||
| .L1x1_BM: /*BM start*/ | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| ZERO_CVEC_1x1 | |||
| cijle LOCAL_VAR1,0,.L1x1_mod | |||
| ALIGN_4 | |||
| .L1x1_4_BK: /*BK_CUR LOOP */ | |||
| CALC_1x1_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L1x1_4_BK | |||
| ALIGN_4 | |||
| .L1x1_mod: | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| jz .L1x1_BK_Store | |||
| ALIGN_4 | |||
| .L1x1_BK: /*BK_CUR LOOP */ | |||
| CALC_1x1 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L1x1_BK | |||
| ALIGN_4 | |||
| .L1x1_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_1x1 ALPHA ,CIJ_LOCAL, LDC_BYTE | |||
| ALIGN_2 | |||
| .Lx1_INNER_END: | |||
| /*add LDC_BYTE_COPY to new*/ | |||
| sllg LOCAL_VAR2,BK,3 /*muyliply*2*sizeof(double) =multiply*8* 2**3 */ | |||
| la CIJ,0(CIJ,LDC_BYTE) /*refresh CIJ=CIJ+LDC_BYTE */ | |||
| la B,0(B,LOCAL_VAR2) /*refresh B=B+Bk*1*sizeof(double) */ | |||
| ALIGN_2 | |||
| .L_FUNC_END: | |||
| /*end*/ | |||
| lmg %r6,%r12,40(%r15) | |||
| br %r14 | |||
| .end | |||
| @@ -0,0 +1,877 @@ | |||
| /*************************************************************************** | |||
| Copyright (c) 2013-2017, The OpenBLAS Project | |||
| All rights reserved. | |||
| Redistribution and use in source and binary forms, with or without | |||
| modification, are permitted provided that the following conditions are | |||
| met: | |||
| 1. Redistributions of source code must retain the above copyright | |||
| notice, this list of conditions and the following disclaimer. | |||
| 2. 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. | |||
| 3. Neither the name of the OpenBLAS project 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 OPENBLAS PROJECT 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. | |||
| *****************************************************************************/ | |||
| /************************************************************************************** | |||
| * 2017/01/01 AbdelRauf (quickwritereader@gmail.com) | |||
| * BLASTEST : OK | |||
| * CTEST : OK | |||
| * TEST : OK | |||
| **************************************************************************************/ | |||
| /*********************************************************************/ | |||
| /* Copyright 2009, 2010 The University of Texas at Austin. */ | |||
| /* All rights reserved. */ | |||
| /* */ | |||
| /* Redistribution and use in source and binary forms, with or */ | |||
| /* without modification, are permitted provided that the following */ | |||
| /* conditions are met: */ | |||
| /* */ | |||
| /* 1. Redistributions of source code must retain the above */ | |||
| /* copyright notice, this list of conditions and the following */ | |||
| /* disclaimer. */ | |||
| /* */ | |||
| /* 2. 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. */ | |||
| /* */ | |||
| /* THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY OF TEXAS AT */ | |||
| /* AUSTIN ``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 UNIVERSITY OF TEXAS AT */ | |||
| /* AUSTIN 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. */ | |||
| /* */ | |||
| /* The views and conclusions contained in the software and */ | |||
| /* documentation are those of the authors and should not be */ | |||
| /* interpreted as representing official policies, either expressed */ | |||
| /* or implied, of The University of Texas at Austin. */ | |||
| /*********************************************************************/ | |||
| #define ASSEMBLER | |||
| #include "common.h" | |||
| /************** Notes ON IBM abi and IBM assembly********************************************** | |||
| * General registers r0 and r1 should be used internally whenever possible | |||
| * General registers r2 to r5 should be second choice | |||
| * General registers r12 to r15 should only be used for their standard function. | |||
| * r0 should not be used as address disp register | |||
| #BLASLONG bm,BLASLONG bn,BLASLONG bk,FLOAT alpha,FLOAT* ba,FLOAT* bb,FLOAT* C,BLASLONG ldc | |||
| ##bm=r2,bn=r3, bk=r4, alpha=f0,ba=r5,bb=r6,stack[160] ,ldc=stack[168] | |||
| offset=stack[176] | |||
| **********************************************************************************************/ | |||
| #define BM %r2 | |||
| #define BM_CUR %r0 | |||
| #define BN %r3 | |||
| #define BN_CUR %r10 | |||
| #define BK %r4 | |||
| #define LDC_BYTE %r8 | |||
| #define ALPHA %f0 | |||
| #define ALPHA_VECT %v0 | |||
| #define LOCAL_VAR1 %r9 | |||
| #define LOCAL_VAR2 %r1 | |||
| #define LOCAL_VAR3 %r11 | |||
| #define A %r5 | |||
| #define B %r6 | |||
| #define CIJ %r7 | |||
| #define CIJ_LOCAL %r12 | |||
| #define OFF %r13 | |||
| #define OFFSET %f8 | |||
| #define ALIGN_4 .align 16 | |||
| #define ALIGN_2 .align 8 | |||
| #define PREFETCH_INS 1 | |||
| /**************************Include kernel helper macrosses**********************************/ | |||
| #include "kernelMacros.S" | |||
| #if defined (TRMMKERNEL) | |||
| #define STORE_8x4 STORE_TRMM_8x4 | |||
| #define STORE_4x4 STORE_TRMM_4x4 | |||
| #define STORE_2x4 STORE_TRMM_2x4 | |||
| #define STORE_1x4 STORE_TRMM_1x4 | |||
| #define STORE_8x2 STORE_TRMM_8x2 | |||
| #define STORE_4x2 STORE_TRMM_4x2 | |||
| #define STORE_2x2 STORE_TRMM_2x2 | |||
| #define STORE_1x2 STORE_TRMM_1x2 | |||
| #define STORE_8x1 STORE_TRMM_8x1 | |||
| #define STORE_4x1 STORE_TRMM_4x1 | |||
| #define STORE_2x1 STORE_TRMM_2x1 | |||
| #define STORE_1x1 STORE_TRMM_1x1 | |||
| #endif | |||
| /***********************************DGEMM***********************************************************/ | |||
| PROLOGUE | |||
| #if defined(TRMMKERNEL) | |||
| stmg %r6,%r13,40(%r15) | |||
| #else | |||
| stmg %r6,%r12,40(%r15) | |||
| #endif | |||
| lg CIJ, 160(%r15) | |||
| lg LOCAL_VAR1, 168(%r15) | |||
| #if defined(TRMMKERNEL) | |||
| lg OFF,176(%r15) | |||
| std OFFSET,32(%r15) | |||
| ldgr OFFSET ,OFF | |||
| #endif | |||
| srlg BN_CUR,BN,2 | |||
| vrepg ALPHA_VECT,ALPHA_VECT,0 /*replicate alpha which in f0*/ | |||
| sllg LDC_BYTE, LOCAL_VAR1,3 /*calculate lcd stride with bytes double=8 x<<3 */ | |||
| #if defined(TRMMKERNEL) && !defined(LEFT) | |||
| /*off = -offset;*/ | |||
| lgdr LOCAL_VAR1,OFFSET | |||
| lcgr OFF,LOCAL_VAR1 | |||
| #endif | |||
| cijle BN_CUR,0,.LX2 | |||
| ALIGN_4 | |||
| .LX4_BN: | |||
| #if defined(PREFETCH_INS) | |||
| pfd 1, 0(A) | |||
| pfd 1, 256(A) | |||
| pfd 1, 0(B) | |||
| pfd 1, 256(B) | |||
| #endif | |||
| #if defined(TRMMKERNEL) && defined(LEFT) | |||
| /*off = offset;*/ | |||
| lgdr OFF,OFFSET | |||
| #endif | |||
| srlg BM_CUR,BM,3 | |||
| lgr LOCAL_VAR3,A | |||
| lgr CIJ_LOCAL,CIJ | |||
| cijle BM_CUR,0,.L4x4 | |||
| ALIGN_4 | |||
| .L8x4_BM: /*BM_CUR LOOP */ | |||
| #if defined(TRMMKERNEL) | |||
| /* RefreshPointers PTR_A,PTR_B,OFF_VAL,B_VAL,C_A,C_B */ | |||
| RefreshPointers LOCAL_VAR3,LOCAL_VAR2,OFF,B,8,4 | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,8,4 | |||
| srl LOCAL_VAR1,2 | |||
| #else | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| #endif | |||
| ZERO_CVEC_8x4 | |||
| cijle LOCAL_VAR1,0,.L8x4_mod | |||
| ALIGN_4 | |||
| .L8x4_4_BK: /*BK_CUR LOOP */ | |||
| #if defined(PREFETCH_INS) | |||
| pfd 1, 512(LOCAL_VAR3) | |||
| #endif | |||
| CALC_8x4_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| #if defined(PREFETCH_INS) | |||
| pfd 1, 512(LOCAL_VAR2) | |||
| #endif | |||
| brctg LOCAL_VAR1,.L8x4_4_BK | |||
| ALIGN_4 | |||
| .L8x4_mod: | |||
| #if defined(TRMMKERNEL) | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,8,4 | |||
| nill LOCAL_VAR1,3 | |||
| #else | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| #endif | |||
| jz .L8x4_BK_Store | |||
| ALIGN_4 | |||
| .L8x4_BK: /*BK_CUR LOOP */ | |||
| CALC_8x4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L8x4_BK | |||
| ALIGN_4 | |||
| .L8x4_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_8x4 ALPHA_VECT,CIJ_LOCAL, LDC_BYTE | |||
| #if defined(TRMMKERNEL) | |||
| /*RefreshPointersAndOFF TEMP_VAL,BK_VAL,OFF_VAL,L_VAR,PTR_A,C_A*/ | |||
| RefreshPointersAndOFF LOCAL_VAR1,BK,OFF,LOCAL_VAR2,LOCAL_VAR3,8,4 | |||
| #endif | |||
| brctg BM_CUR,.L8x4_BM | |||
| ALIGN_4 | |||
| .L4x4: | |||
| tmll BM,4 | |||
| jz .L2x4 | |||
| ALIGN_4 | |||
| .L4x4_BM: /*BM start*/ | |||
| #if defined(TRMMKERNEL) | |||
| /* RefreshPointers PTR_A,PTR_B,OFF_VAL,B_VAL,C_A,C_B */ | |||
| RefreshPointers LOCAL_VAR3,LOCAL_VAR2,OFF,B,4,4 | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,4,4 | |||
| srl LOCAL_VAR1,2 | |||
| #else | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| #endif | |||
| ZERO_CVEC_4x4 | |||
| cijle LOCAL_VAR1,0,.L4x4_mod | |||
| ALIGN_4 | |||
| .L4x4_4_BK: /*BK_CUR LOOP */ | |||
| CALC_4x4_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L4x4_4_BK | |||
| ALIGN_4 | |||
| .L4x4_mod: | |||
| #if defined(TRMMKERNEL) | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,4,4 | |||
| nill LOCAL_VAR1,3 | |||
| #else | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| #endif | |||
| jz .L4x4_BK_Store | |||
| ALIGN_4 | |||
| .L4x4_BK: /*BK_CUR LOOP */ | |||
| CALC_4x4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L4x4_BK | |||
| ALIGN_4 | |||
| .L4x4_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_4x4 ALPHA_VECT ,CIJ_LOCAL, LDC_BYTE | |||
| #if defined(TRMMKERNEL) | |||
| RefreshPointersAndOFF LOCAL_VAR1,BK,OFF,LOCAL_VAR2,LOCAL_VAR3,4,4 | |||
| #endif | |||
| ALIGN_2 | |||
| .L2x4: | |||
| tmll BM,2 | |||
| jz .L1x4 | |||
| ALIGN_4 | |||
| .L2x4_BM: /*BM start*/ | |||
| #if defined(TRMMKERNEL) | |||
| /* RefreshPointers PTR_A,PTR_B,OFF_VAL,B_VAL,C_A,C_B */ | |||
| RefreshPointers LOCAL_VAR3,LOCAL_VAR2,OFF,B,2,4 | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,2,4 | |||
| srl LOCAL_VAR1,2 | |||
| #else | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| #endif | |||
| ZERO_CVEC_2x4 | |||
| cijle LOCAL_VAR1,0,.L2x4_mod | |||
| ALIGN_4 | |||
| .L2x4_4_BK: /*BK_CUR LOOP */ | |||
| CALC_2x4_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L2x4_4_BK | |||
| ALIGN_4 | |||
| .L2x4_mod: | |||
| #if defined(TRMMKERNEL) | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,2,4 | |||
| nill LOCAL_VAR1,3 | |||
| #else | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| #endif | |||
| jz .L2x4_BK_Store | |||
| ALIGN_4 | |||
| .L2x4_BK: /*BK_CUR LOOP */ | |||
| CALC_2x4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L2x4_BK | |||
| ALIGN_4 | |||
| .L2x4_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_2x4 ALPHA_VECT ,CIJ_LOCAL, LDC_BYTE | |||
| #if defined(TRMMKERNEL) | |||
| RefreshPointersAndOFF LOCAL_VAR1,BK,OFF,LOCAL_VAR2,LOCAL_VAR3,2,4 | |||
| #endif | |||
| ALIGN_4 | |||
| .L1x4: | |||
| tmll BM,1 | |||
| jz .Lx4_INNER_END | |||
| ALIGN_4 | |||
| .L1x4_BM: /*BM start*/ | |||
| #if defined(TRMMKERNEL) | |||
| /* RefreshPointers PTR_A,PTR_B,OFF_VAL,B_VAL,C_A,C_B */ | |||
| RefreshPointers LOCAL_VAR3,LOCAL_VAR2,OFF,B,1,4 | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,1,4 | |||
| srl LOCAL_VAR1,2 | |||
| #else | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| #endif | |||
| ZERO_CVEC_1x4 | |||
| cijle LOCAL_VAR1,0,.L1x4_mod | |||
| ALIGN_4 | |||
| .L1x4_4_BK: /*BK_CUR LOOP */ | |||
| CALC_1x4_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L1x4_4_BK | |||
| ALIGN_4 | |||
| .L1x4_mod: | |||
| #if defined(TRMMKERNEL) | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,1,4 | |||
| nill LOCAL_VAR1,3 | |||
| #else | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| #endif | |||
| jz .L1x4_BK_Store | |||
| ALIGN_4 | |||
| .L1x4_BK: /*BK_CUR LOOP */ | |||
| CALC_1x4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L1x4_BK | |||
| ALIGN_4 | |||
| .L1x4_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_1x4 ALPHA_VECT ,CIJ_LOCAL, LDC_BYTE | |||
| #if defined(TRMMKERNEL) | |||
| RefreshPointersAndOFF LOCAL_VAR1,BK,OFF,LOCAL_VAR2,LOCAL_VAR3,1,4 | |||
| #endif | |||
| ALIGN_2 | |||
| .Lx4_INNER_END: | |||
| /*add LDC_BYTE_COPY to new*/ | |||
| sllg LOCAL_VAR1,LDC_BYTE,2 /*multiply*4 */ | |||
| #if defined(TRMMKERNEL) && !defined(LEFT) | |||
| aghi OFF,4 | |||
| #endif | |||
| sllg LOCAL_VAR2,BK,5 /*muyliply*4*sizeof(double) =multiply*32* 2**5 */ | |||
| la CIJ,0(CIJ,LOCAL_VAR1) /*refresh CIJ=CIJ+LDC_BYTE*4*/ | |||
| la B,0(B,LOCAL_VAR2) /*refresh B=B+Bk*4*sizeof(double) */ | |||
| brctg BN_CUR,.LX4_BN | |||
| /*********************************X2 SECTION************************************************/ | |||
| ALIGN_4 | |||
| .LX2: | |||
| tmll BN,2 | |||
| jz .Lx1 | |||
| ALIGN_4 | |||
| .Lx2_BN: | |||
| #if defined(TRMMKERNEL) && defined(LEFT) | |||
| /*off = offset;*/ | |||
| lgdr OFF,OFFSET | |||
| #endif | |||
| srlg BM_CUR,BM,3 | |||
| lgr LOCAL_VAR3,A | |||
| lgr CIJ_LOCAL,CIJ | |||
| cijle BM_CUR,0,.L4x2 | |||
| ALIGN_4 | |||
| .L8x2_BM: /*BM_CUR LOOP */ | |||
| #if defined(TRMMKERNEL) | |||
| /* RefreshPointers PTR_A,PTR_B,OFF_VAL,B_VAL,C_A,C_B */ | |||
| RefreshPointers LOCAL_VAR3,LOCAL_VAR2,OFF,B,8,2 | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,8,2 | |||
| srl LOCAL_VAR1,2 | |||
| #else | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| #endif | |||
| ZERO_CVEC_8x2 | |||
| cijle LOCAL_VAR1,0,.L8x2_mod | |||
| ALIGN_4 | |||
| .L8x2_4_BK: /*BK_CUR LOOP */ | |||
| #if defined(PREFETCH_INS) | |||
| pfd 1, 256(LOCAL_VAR3) | |||
| pfd 1,64(LOCAL_VAR2) | |||
| #endif | |||
| CALC_8x2_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L8x2_4_BK | |||
| ALIGN_4 | |||
| .L8x2_mod: | |||
| #if defined(TRMMKERNEL) | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,8,2 | |||
| nill LOCAL_VAR1,3 | |||
| #else | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| #endif | |||
| jz .L8x2_BK_Store | |||
| ALIGN_4 | |||
| .L8x2_BK: /*BK_CUR LOOP */ | |||
| CALC_8x2 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L8x2_BK | |||
| ALIGN_4 | |||
| .L8x2_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_8x2 ALPHA_VECT,CIJ_LOCAL, LDC_BYTE | |||
| #if defined(TRMMKERNEL) | |||
| RefreshPointersAndOFF LOCAL_VAR1,BK,OFF,LOCAL_VAR2,LOCAL_VAR3,8,2 | |||
| #endif | |||
| ALIGN_4 | |||
| brctg BM_CUR,.L8x2_BM | |||
| ALIGN_2 | |||
| .L4x2: | |||
| tmll BM,4 | |||
| jz .L2x2 | |||
| ALIGN_4 | |||
| .L4x2_BM: /*BM start*/ | |||
| #if defined(TRMMKERNEL) | |||
| /* RefreshPointers PTR_A,PTR_B,OFF_VAL,B_VAL,C_A,C_B */ | |||
| RefreshPointers LOCAL_VAR3,LOCAL_VAR2,OFF,B,4,2 | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,4,2 | |||
| srl LOCAL_VAR1,2 | |||
| #else | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| #endif | |||
| ZERO_CVEC_4x2 | |||
| cijle LOCAL_VAR1,0,.L4x2_mod | |||
| ALIGN_4 | |||
| .L4x2_4_BK: /*BK_CUR LOOP */ | |||
| CALC_4x2_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L4x2_4_BK | |||
| ALIGN_4 | |||
| .L4x2_mod: | |||
| #if defined(TRMMKERNEL) | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,4,2 | |||
| nill LOCAL_VAR1,3 | |||
| #else | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| #endif | |||
| jz .L4x2_BK_Store | |||
| ALIGN_4 | |||
| .L4x2_BK: /*BK_CUR LOOP */ | |||
| CALC_4x2 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L4x2_BK | |||
| ALIGN_4 | |||
| .L4x2_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_4x2 ALPHA_VECT ,CIJ_LOCAL, LDC_BYTE | |||
| #if defined(TRMMKERNEL) | |||
| RefreshPointersAndOFF LOCAL_VAR1,BK,OFF,LOCAL_VAR2,LOCAL_VAR3,4,2 | |||
| #endif | |||
| ALIGN_2 | |||
| .L2x2: | |||
| tmll BM,2 | |||
| jz .L1x2 | |||
| ALIGN_4 | |||
| .L2x2_BM: /*BM start*/ | |||
| #if defined(TRMMKERNEL) | |||
| /* RefreshPointers PTR_A,PTR_B,OFF_VAL,B_VAL,C_A,C_B */ | |||
| RefreshPointers LOCAL_VAR3,LOCAL_VAR2,OFF,B,2,2 | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,2,2 | |||
| srl LOCAL_VAR1,2 | |||
| #else | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| #endif | |||
| ZERO_CVEC_2x2 | |||
| cijle LOCAL_VAR1,0,.L2x2_mod | |||
| ALIGN_4 | |||
| .L2x2_4_BK: /*BK_CUR LOOP */ | |||
| CALC_2x2_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L2x2_4_BK | |||
| ALIGN_4 | |||
| .L2x2_mod: | |||
| #if defined(TRMMKERNEL) | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,2,2 | |||
| nill LOCAL_VAR1,3 | |||
| #else | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| #endif | |||
| jz .L2x2_BK_Store | |||
| ALIGN_4 | |||
| .L2x2_BK: /*BK_CUR LOOP */ | |||
| CALC_2x2 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L2x2_BK | |||
| ALIGN_4 | |||
| .L2x2_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_2x2 ALPHA_VECT ,CIJ_LOCAL, LDC_BYTE | |||
| #if defined(TRMMKERNEL) | |||
| RefreshPointersAndOFF LOCAL_VAR1,BK,OFF,LOCAL_VAR2,LOCAL_VAR3,2,2 | |||
| #endif | |||
| ALIGN_2 | |||
| .L1x2: | |||
| tmll BM,1 | |||
| jz .Lx2_INNER_END | |||
| ALIGN_4 | |||
| .L1x2_BM: /*BM start*/ | |||
| #if defined(TRMMKERNEL) | |||
| /* RefreshPointers PTR_A,PTR_B,OFF_VAL,B_VAL,C_A,C_B */ | |||
| RefreshPointers LOCAL_VAR3,LOCAL_VAR2,OFF,B,1,2 | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,1,2 | |||
| srl LOCAL_VAR1,2 | |||
| #else | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| #endif | |||
| ZERO_CVEC_1x2 | |||
| cijle LOCAL_VAR1,0,.L1x2_mod | |||
| ALIGN_4 | |||
| .L1x2_4_BK: /*BK_CUR LOOP */ | |||
| CALC_1x2_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L1x2_4_BK | |||
| ALIGN_4 | |||
| .L1x2_mod: | |||
| #if defined(TRMMKERNEL) | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,1,2 | |||
| nill LOCAL_VAR1,3 | |||
| #else | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| #endif | |||
| jz .L1x2_BK_Store | |||
| ALIGN_4 | |||
| .L1x2_BK: /*BK_CUR LOOP */ | |||
| CALC_1x2 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L1x2_BK | |||
| ALIGN_4 | |||
| .L1x2_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_1x2 ALPHA_VECT ,CIJ_LOCAL, LDC_BYTE | |||
| #if defined(TRMMKERNEL) | |||
| RefreshPointersAndOFF LOCAL_VAR1,BK,OFF,LOCAL_VAR2,LOCAL_VAR3,1,2 | |||
| #endif | |||
| ALIGN_2 | |||
| .Lx2_INNER_END: | |||
| /*add LDC_BYTE_COPY to new*/ | |||
| la LOCAL_VAR1,0(LDC_BYTE,LDC_BYTE) /*multiply*2 */ | |||
| sllg LOCAL_VAR2,BK,4 /*muyliply*2*sizeof(double) =multiply*16* 2**4 */ | |||
| la CIJ,0(CIJ,LOCAL_VAR1) /*refresh CIJ=CIJ+LDC_BYTE*4*/ | |||
| #if defined(TRMMKERNEL) && !defined(LEFT) | |||
| aghi OFF,2 | |||
| #endif | |||
| la B,0(B,LOCAL_VAR2) /*refresh B=B+Bk*4*sizeof(double) */ | |||
| /*********************************X1 SECTION************************************************/ | |||
| ALIGN_2 | |||
| .Lx1: | |||
| tmll BN,1 | |||
| jz .L_FUNC_END | |||
| ALIGN_4 | |||
| .Lx1_BN: | |||
| #if defined(TRMMKERNEL) && defined(LEFT) | |||
| /*off = offset;*/ | |||
| lgdr OFF,OFFSET | |||
| #endif | |||
| srlg BM_CUR,BM,3 | |||
| lgr LOCAL_VAR3,A | |||
| lgr CIJ_LOCAL,CIJ | |||
| cijle BM_CUR,0,.L4x1 | |||
| ALIGN_4 | |||
| .L8x1_BM: /*BM_CUR LOOP */ | |||
| #if defined(TRMMKERNEL) | |||
| /* RefreshPointers PTR_A,PTR_B,OFF_VAL,B_VAL,C_A,C_B */ | |||
| RefreshPointers LOCAL_VAR3,LOCAL_VAR2,OFF,B,8,1 | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,8,1 | |||
| srl LOCAL_VAR1,2 | |||
| #else | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| #endif | |||
| ZERO_CVEC_8x1 | |||
| cijle LOCAL_VAR1,0,.L8x1_mod | |||
| ALIGN_4 | |||
| .L8x1_4_BK: /*BK_CUR LOOP */ | |||
| #if defined(PREFETCH_INS) | |||
| pfd 1, 256(LOCAL_VAR3) | |||
| #endif | |||
| CALC_8x1_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L8x1_4_BK | |||
| ALIGN_4 | |||
| .L8x1_mod: | |||
| #if defined(TRMMKERNEL) | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,8,1 | |||
| nill LOCAL_VAR1,3 | |||
| #else | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| #endif | |||
| jz .L8x1_BK_Store | |||
| ALIGN_4 | |||
| .L8x1_BK: /*BK_CUR LOOP */ | |||
| CALC_8x1 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L8x1_BK | |||
| ALIGN_4 | |||
| .L8x1_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_8x1 ALPHA_VECT,CIJ_LOCAL, LDC_BYTE | |||
| #if defined(TRMMKERNEL) | |||
| RefreshPointersAndOFF LOCAL_VAR1,BK,OFF,LOCAL_VAR2,LOCAL_VAR3,8,1 | |||
| #endif | |||
| ALIGN_4 | |||
| brctg BM_CUR,.L8x1_BM | |||
| ALIGN_2 | |||
| .L4x1: | |||
| tmll BM,4 | |||
| jz .L2x1 | |||
| ALIGN_4 | |||
| .L4x1_BM: /*BM start*/ | |||
| #if defined(TRMMKERNEL) | |||
| /* RefreshPointers PTR_A,PTR_B,OFF_VAL,B_VAL,C_A,C_B */ | |||
| RefreshPointers LOCAL_VAR3,LOCAL_VAR2,OFF,B,4,1 | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,4,1 | |||
| srl LOCAL_VAR1,2 | |||
| #else | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| #endif | |||
| ZERO_CVEC_4x1 | |||
| cijle LOCAL_VAR1,0,.L4x1_mod | |||
| ALIGN_4 | |||
| .L4x1_4_BK: /*BK_CUR LOOP */ | |||
| CALC_4x1_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L4x1_4_BK | |||
| ALIGN_4 | |||
| .L4x1_mod: | |||
| #if defined(TRMMKERNEL) | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,4,1 | |||
| nill LOCAL_VAR1,3 | |||
| #else | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| #endif | |||
| jz .L4x1_BK_Store | |||
| ALIGN_4 | |||
| .L4x1_BK: /*BK_CUR LOOP */ | |||
| CALC_4x1 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L4x1_BK | |||
| ALIGN_4 | |||
| .L4x1_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_4x1 ALPHA_VECT ,CIJ_LOCAL, LDC_BYTE | |||
| #if defined(TRMMKERNEL) | |||
| RefreshPointersAndOFF LOCAL_VAR1,BK,OFF,LOCAL_VAR2,LOCAL_VAR3,4,1 | |||
| #endif | |||
| ALIGN_2 | |||
| .L2x1: | |||
| tmll BM,2 | |||
| jz .L1x1 | |||
| ALIGN_4 | |||
| .L2x1_BM: /*BM start*/ | |||
| #if defined(TRMMKERNEL) | |||
| /* RefreshPointers PTR_A,PTR_B,OFF_VAL,B_VAL,C_A,C_B */ | |||
| RefreshPointers LOCAL_VAR3,LOCAL_VAR2,OFF,B,2,1 | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,2,1 | |||
| srl LOCAL_VAR1,2 | |||
| #else | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| #endif | |||
| ZERO_CVEC_2x1 | |||
| cijle LOCAL_VAR1,0,.L2x1_mod | |||
| ALIGN_4 | |||
| .L2x1_4_BK: /*BK_CUR LOOP */ | |||
| CALC_2x1_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L2x1_4_BK | |||
| ALIGN_4 | |||
| .L2x1_mod: | |||
| #if defined(TRMMKERNEL) | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,2,1 | |||
| nill LOCAL_VAR1,3 | |||
| #else | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| #endif | |||
| jz .L2x1_BK_Store | |||
| ALIGN_4 | |||
| .L2x1_BK: /*BK_CUR LOOP */ | |||
| CALC_2x1 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L2x1_BK | |||
| ALIGN_4 | |||
| .L2x1_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_2x1 ALPHA_VECT ,CIJ_LOCAL, LDC_BYTE | |||
| #if defined(TRMMKERNEL) | |||
| RefreshPointersAndOFF LOCAL_VAR1,BK,OFF,LOCAL_VAR2,LOCAL_VAR3,2,1 | |||
| #endif | |||
| ALIGN_2 | |||
| .L1x1: | |||
| tmll BM, 1 | |||
| jz .Lx1_INNER_END | |||
| ALIGN_4 | |||
| .L1x1_BM: /*BM start*/ | |||
| #if defined(TRMMKERNEL) | |||
| /* RefreshPointers PTR_A,PTR_B,OFF_VAL,B_VAL,C_A,C_B */ | |||
| RefreshPointers LOCAL_VAR3,LOCAL_VAR2,OFF,B,1,1 | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,1,1 | |||
| srl LOCAL_VAR1,2 | |||
| #else | |||
| srlg LOCAL_VAR1,BK,2 /*refresh BK*/ | |||
| lgr LOCAL_VAR2,B /*refresh BPOINT*/ | |||
| #endif | |||
| ZERO_CVEC_1x1 | |||
| cijle LOCAL_VAR1,0,.L1x1_mod | |||
| ALIGN_4 | |||
| .L1x1_4_BK: /*BK_CUR LOOP */ | |||
| CALC_1x1_4 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L1x1_4_BK | |||
| ALIGN_4 | |||
| .L1x1_mod: | |||
| #if defined(TRMMKERNEL) | |||
| RefreshTempBk LOCAL_VAR1,BK,OFF,1,1 | |||
| nill LOCAL_VAR1,3 | |||
| #else | |||
| la LOCAL_VAR1,3(0,0) | |||
| NGR LOCAL_VAR1,BK /*refresh BK*/ | |||
| #endif | |||
| jz .L1x1_BK_Store | |||
| ALIGN_4 | |||
| .L1x1_BK: /*BK_CUR LOOP */ | |||
| CALC_1x1 LOCAL_VAR3,LOCAL_VAR2 | |||
| brctg LOCAL_VAR1,.L1x1_BK | |||
| ALIGN_4 | |||
| .L1x1_BK_Store: | |||
| /*store C and use LDC_BYTE AND CIJ_COPY for mem storing*/ | |||
| STORE_1x1 ALPHA ,CIJ_LOCAL, LDC_BYTE | |||
| #if defined(TRMMKERNEL) | |||
| RefreshPointersAndOFF LOCAL_VAR1,BK,OFF,LOCAL_VAR2,LOCAL_VAR3,1,1 | |||
| #endif | |||
| ALIGN_2 | |||
| .Lx1_INNER_END: | |||
| /*add LDC_BYTE_COPY to new*/ | |||
| sllg LOCAL_VAR2,BK,3 /*muyliply*2*sizeof(double) =multiply*8* 2**3 */ | |||
| la CIJ,0(CIJ,LDC_BYTE) /*refresh CIJ=CIJ+LDC_BYTE */ | |||
| #if defined(TRMMKERNEL) && !defined(LEFT) | |||
| aghi OFF,1 | |||
| #endif | |||
| la B,0(B,LOCAL_VAR2) /*refresh B=B+Bk*1*sizeof(double) */ | |||
| ALIGN_2 | |||
| .L_FUNC_END: | |||
| /*end*/ | |||
| #if defined(TRMMKERNEL) | |||
| ld %f8,32(%r15) | |||
| lmg %r6,%r13,40(%r15) | |||
| #else | |||
| lmg %r6,%r12,40(%r15) | |||
| #endif | |||
| br %r14 | |||
| .end | |||
| @@ -2505,6 +2505,85 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |||
| #define SYMV_P 16 | |||
| #endif | |||
| #if defined(ZARCH_GENERIC) | |||
| #define SNUMOPT 2 | |||
| #define DNUMOPT 2 | |||
| #define GEMM_DEFAULT_OFFSET_A 0 | |||
| #define GEMM_DEFAULT_OFFSET_B 0 | |||
| #define GEMM_DEFAULT_ALIGN 0x03fffUL | |||
| #define SGEMM_DEFAULT_UNROLL_M 2 | |||
| #define SGEMM_DEFAULT_UNROLL_N 2 | |||
| #define DGEMM_DEFAULT_UNROLL_M 2 | |||
| #define DGEMM_DEFAULT_UNROLL_N 2 | |||
| #define CGEMM_DEFAULT_UNROLL_M 2 | |||
| #define CGEMM_DEFAULT_UNROLL_N 2 | |||
| #define ZGEMM_DEFAULT_UNROLL_M 2 | |||
| #define ZGEMM_DEFAULT_UNROLL_N 2 | |||
| #define SGEMM_DEFAULT_P 128 | |||
| #define DGEMM_DEFAULT_P 128 | |||
| #define CGEMM_DEFAULT_P 96 | |||
| #define ZGEMM_DEFAULT_P 64 | |||
| #define SGEMM_DEFAULT_Q 240 | |||
| #define DGEMM_DEFAULT_Q 120 | |||
| #define CGEMM_DEFAULT_Q 120 | |||
| #define ZGEMM_DEFAULT_Q 120 | |||
| #define SGEMM_DEFAULT_R 12288 | |||
| #define DGEMM_DEFAULT_R 8192 | |||
| #define CGEMM_DEFAULT_R 4096 | |||
| #define ZGEMM_DEFAULT_R 4096 | |||
| #define SYMV_P 16 | |||
| #endif | |||
| #if defined(Z13) | |||
| #define SNUMOPT 2 | |||
| #define DNUMOPT 4 | |||
| #define GEMM_DEFAULT_OFFSET_A 0 | |||
| #define GEMM_DEFAULT_OFFSET_B 0 | |||
| #define GEMM_DEFAULT_ALIGN 0x03fffUL | |||
| #define SGEMM_DEFAULT_UNROLL_M 2 | |||
| #define SGEMM_DEFAULT_UNROLL_N 2 | |||
| #define DGEMM_DEFAULT_UNROLL_M 8 | |||
| #define DGEMM_DEFAULT_UNROLL_N 4 | |||
| #define CGEMM_DEFAULT_UNROLL_M 2 | |||
| #define CGEMM_DEFAULT_UNROLL_N 2 | |||
| #define ZGEMM_DEFAULT_UNROLL_M 2 | |||
| #define ZGEMM_DEFAULT_UNROLL_N 2 | |||
| #define SGEMM_DEFAULT_P 128 | |||
| #define DGEMM_DEFAULT_P 320 | |||
| #define CGEMM_DEFAULT_P 96 | |||
| #define ZGEMM_DEFAULT_P 64 | |||
| #define SGEMM_DEFAULT_Q 240 | |||
| #define DGEMM_DEFAULT_Q 384 | |||
| #define CGEMM_DEFAULT_Q 120 | |||
| #define ZGEMM_DEFAULT_Q 120 | |||
| #define SGEMM_DEFAULT_R 12288 | |||
| #define DGEMM_DEFAULT_R 4096 | |||
| #define CGEMM_DEFAULT_R 4096 | |||
| #define ZGEMM_DEFAULT_R 4096 | |||
| #define SYMV_P 16 | |||
| #endif | |||