Browse Source

add cast to resolve ambiguity for clang

pull/4140/head
Martin Kroeker GitHub 2 years ago
parent
commit
0e71260701
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      kernel/arm64/gemm_ncopy_sve_v1x8.c

+ 1
- 1
kernel/arm64/gemm_ncopy_sve_v1x8.c View File

@@ -107,7 +107,7 @@ int CNAME(BLASLONG m, BLASLONG n, IFLOAT *a, BLASLONG lda, IFLOAT *b) {
BLASLONG remaining_n = n - single_vectors_n;
if (remaining_n) {
a_offset_inner = a_offset;
svbool_t pg = SV_WHILE(0L, remaining_n);
svbool_t pg = SV_WHILE((uint64_t)0L, (uint64_t)remaining_n);
uint64_t active = remaining_n;
uint64_t i_cnt = m >> 2;
while (i_cnt--) {


Loading…
Cancel
Save