Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylt committed Nov 12, 2021
1 parent e299738 commit 038d3ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backends/sve/ceed-sve-tensor-f64.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ static inline int CeedTensorContract_Sve_Blocked(CeedTensorContract contract,
for (CeedInt j=0; j<(J/JJ)*JJ; j+=JJ)
for (CeedInt jj=0; jj<JJ; jj++) { // unroll
// C vectorization by compiler
int64_t c = 0;
int32_t c = 0;
svbool_t pg = svwhilelt_b64(c, C);
do {
// Load u, v into vectors
Expand All @@ -63,7 +63,7 @@ static inline int CeedTensorContract_Sve_Blocked(CeedTensorContract contract,
// Blocks of JJ rows
for (CeedInt jj=0; jj<J-j; jj++) { // not unrolled
// C vectorization by compiler
int64_t c = 0;
int32_t c = 0;
svbool_t pg = svwhilelt_b64(c, C);
do {
// Load u, v into vectors
Expand Down

0 comments on commit 038d3ac

Please sign in to comment.