Skip to content

Commit 47f8921

Browse files
conflict resolve
1 parent 628b335 commit 47f8921

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

kernel/power/KERNEL.POWER9

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ SGEMMKERNEL = sgemm_kernel_power9.S
1212
SGEMMINCOPY = ../generic/gemm_ncopy_16.c
1313
SGEMMITCOPY = sgemm_tcopy_16_power8.S
1414
SGEMMONCOPY = ../generic/gemm_ncopy_8.c
15-
SGEMMOTCOPY = sgemm_tcopy_8_power8.S
16-
SGEMMINCOPYOBJ = sgemm_incopy.o
17-
SGEMMITCOPYOBJ = sgemm_itcopy.o
18-
SGEMMONCOPYOBJ = sgemm_oncopy.o
19-
SGEMMOTCOPYOBJ = sgemm_otcopy.o
15+
SGEMMOTCOPY = sgemm_tcopy_8_power8.S
16+
SGEMMINCOPYOBJ = sgemm_incopy$(TSUFFIX).$(SUFFIX)
17+
SGEMMITCOPYOBJ = sgemm_itcopy$(TSUFFIX).$(SUFFIX)
18+
SGEMMONCOPYOBJ = sgemm_oncopy$(TSUFFIX).$(SUFFIX)
19+
SGEMMOTCOPYOBJ = sgemm_otcopy$(TSUFFIX).$(SUFFIX)
2020

2121
DGEMMKERNEL = dgemm_kernel_power9.S
2222
DGEMMINCOPY = ../generic/gemm_ncopy_16.c

kernel/power/icamax.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ static inline __attribute__((always_inline)) __vector float mvec_mergeo(__vector
7575
static BLASLONG ciamax_kernel_32(BLASLONG n, FLOAT *x, FLOAT *maxf) {
7676

7777
BLASLONG index;
78-
BLASLONG i;
78+
BLASLONG i=0;
7979
#if defined(USE_MASK_PERMUTATIONS)
8080
register __vector unsigned int static_index0 = {0,1,2,3};
8181
#else

kernel/power/icamin.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5050
static BLASLONG ciamin_kernel_32(BLASLONG n, FLOAT *x, FLOAT *minf) {
5151

5252
BLASLONG index;
53-
BLASLONG i;
53+
BLASLONG i=0;
5454
register __vector unsigned int static_index0 = {0,1,2,3};
5555
register __vector unsigned int temp0 = {4,4,4, 4}; //temporary vector register
5656
register __vector unsigned int temp1= temp0<<1; //{8,8,8,8}

0 commit comments

Comments
 (0)