We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8fef587 + 65de6f5 commit 53e0837Copy full SHA for 53e0837
kernel/mips/cgemm_kernel_8x4_msa.c
@@ -758,10 +758,10 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
758
pc0[1] += alphar * res1; \
759
pc0[1] += alphai * res0; \
760
\
761
- pc1[2] += alphar * res2; \
762
- pc1[2] -= alphai * res3; \
763
- pc1[3] += alphar * res3; \
764
- pc1[3] += alphai * res2; \
+ pc1[0] += alphar * res2; \
+ pc1[0] -= alphai * res3; \
+ pc1[1] += alphar * res3; \
+ pc1[1] += alphai * res2; \
765
}
766
767
#define CGEMM_SCALE_1X1 \
@@ -1067,10 +1067,10 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1067
pc0[1] = alphar * res1; \
1068
1069
1070
- pc1[2] = alphar * res2; \
1071
1072
- pc1[3] = alphar * res3; \
1073
+ pc1[0] = alphar * res2; \
+ pc1[1] = alphar * res3; \
1074
1075
1076
#define CGEMM_TRMM_SCALE_1X1 \
0 commit comments