conflict resolve
This commit is contained in:
parent
628b335e83
commit
47f892198c
|
@ -13,10 +13,10 @@ SGEMMINCOPY = ../generic/gemm_ncopy_16.c
|
||||||
SGEMMITCOPY = sgemm_tcopy_16_power8.S
|
SGEMMITCOPY = sgemm_tcopy_16_power8.S
|
||||||
SGEMMONCOPY = ../generic/gemm_ncopy_8.c
|
SGEMMONCOPY = ../generic/gemm_ncopy_8.c
|
||||||
SGEMMOTCOPY = sgemm_tcopy_8_power8.S
|
SGEMMOTCOPY = sgemm_tcopy_8_power8.S
|
||||||
SGEMMINCOPYOBJ = sgemm_incopy.o
|
SGEMMINCOPYOBJ = sgemm_incopy$(TSUFFIX).$(SUFFIX)
|
||||||
SGEMMITCOPYOBJ = sgemm_itcopy.o
|
SGEMMITCOPYOBJ = sgemm_itcopy$(TSUFFIX).$(SUFFIX)
|
||||||
SGEMMONCOPYOBJ = sgemm_oncopy.o
|
SGEMMONCOPYOBJ = sgemm_oncopy$(TSUFFIX).$(SUFFIX)
|
||||||
SGEMMOTCOPYOBJ = sgemm_otcopy.o
|
SGEMMOTCOPYOBJ = sgemm_otcopy$(TSUFFIX).$(SUFFIX)
|
||||||
|
|
||||||
DGEMMKERNEL = dgemm_kernel_power9.S
|
DGEMMKERNEL = dgemm_kernel_power9.S
|
||||||
DGEMMINCOPY = ../generic/gemm_ncopy_16.c
|
DGEMMINCOPY = ../generic/gemm_ncopy_16.c
|
||||||
|
|
|
@ -75,7 +75,7 @@ static inline __attribute__((always_inline)) __vector float mvec_mergeo(__vector
|
||||||
static BLASLONG ciamax_kernel_32(BLASLONG n, FLOAT *x, FLOAT *maxf) {
|
static BLASLONG ciamax_kernel_32(BLASLONG n, FLOAT *x, FLOAT *maxf) {
|
||||||
|
|
||||||
BLASLONG index;
|
BLASLONG index;
|
||||||
BLASLONG i;
|
BLASLONG i=0;
|
||||||
#if defined(USE_MASK_PERMUTATIONS)
|
#if defined(USE_MASK_PERMUTATIONS)
|
||||||
register __vector unsigned int static_index0 = {0,1,2,3};
|
register __vector unsigned int static_index0 = {0,1,2,3};
|
||||||
#else
|
#else
|
||||||
|
|
|
@ -50,7 +50,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
static BLASLONG ciamin_kernel_32(BLASLONG n, FLOAT *x, FLOAT *minf) {
|
static BLASLONG ciamin_kernel_32(BLASLONG n, FLOAT *x, FLOAT *minf) {
|
||||||
|
|
||||||
BLASLONG index;
|
BLASLONG index;
|
||||||
BLASLONG i;
|
BLASLONG i=0;
|
||||||
register __vector unsigned int static_index0 = {0,1,2,3};
|
register __vector unsigned int static_index0 = {0,1,2,3};
|
||||||
register __vector unsigned int temp0 = {4,4,4, 4}; //temporary vector register
|
register __vector unsigned int temp0 = {4,4,4, 4}; //temporary vector register
|
||||||
register __vector unsigned int temp1= temp0<<1; //{8,8,8,8}
|
register __vector unsigned int temp1= temp0<<1; //{8,8,8,8}
|
||||||
|
|
Loading…
Reference in New Issue