Skip to content

Commit b283fc3

Browse files
committed
ggml-cpu: format code
Signed-off-by: Adrien Gallouët <[email protected]>
1 parent 4db692a commit b283fc3

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

ggml/src/ggml-cpu/ggml-cpu-aarch64.cpp

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -564,21 +564,21 @@ static void ggml_gemv_q4_0_4x4_q8_0(int n, float * GGML_RESTRICT s, size_t bs, c
564564

565565
#if ! ((defined(_MSC_VER)) && ! defined(__clang__)) && defined(__aarch64__) && defined(__ARM_NEON) && defined(__ARM_FEATURE_DOTPROD)
566566
if (ggml_cpu_has_neon() && ggml_cpu_has_dotprod()) {
567-
const block_q4_0x4 * b_ptr = (const block_q4_0x4 *)vx;
567+
const block_q4_0x4 * b_ptr = (const block_q4_0x4 *) vx;
568568

569569
for (int c = 0; c < nc; c += ncols_interleaved) {
570-
const block_q8_0 * a_ptr = (const block_q8_0 *)vy;
570+
const block_q8_0 * a_ptr = (const block_q8_0 *) vy;
571571
float32x4_t acc = vdupq_n_f32(0);
572572
for (int b = 0; b < nb; b++) {
573-
int8x16_t b0 = vld1q_s8((const int8_t *)b_ptr->qs);
574-
int8x16_t b1 = vld1q_s8((const int8_t *)b_ptr->qs + 16);
575-
int8x16_t b2 = vld1q_s8((const int8_t *)b_ptr->qs + 32);
576-
int8x16_t b3 = vld1q_s8((const int8_t *)b_ptr->qs + 48);
577-
float16x4_t bd = vld1_f16((const __fp16 *)b_ptr->d);
573+
int8x16_t b0 = vld1q_s8((const int8_t *) b_ptr->qs);
574+
int8x16_t b1 = vld1q_s8((const int8_t *) b_ptr->qs + 16);
575+
int8x16_t b2 = vld1q_s8((const int8_t *) b_ptr->qs + 32);
576+
int8x16_t b3 = vld1q_s8((const int8_t *) b_ptr->qs + 48);
577+
float16x4_t bd = vld1_f16((const __fp16 *) b_ptr->d);
578578

579579
int8x16_t a0 = vld1q_s8(a_ptr->qs);
580580
int8x16_t a1 = vld1q_s8(a_ptr->qs + qk/2);
581-
float16x4_t ad = vld1_dup_f16((const __fp16 *)&a_ptr->d);
581+
float16x4_t ad = vld1_dup_f16((const __fp16 *) &a_ptr->d);
582582

583583
int32x4_t ret = vdupq_n_s32(0);
584584

@@ -649,23 +649,23 @@ static void ggml_gemv_q4_0_4x8_q8_0(int n, float * GGML_RESTRICT s, size_t bs, c
649649

650650
#if ! ((defined(_MSC_VER)) && ! defined(__clang__)) && defined(__aarch64__) && defined(__ARM_NEON) && defined(__ARM_FEATURE_DOTPROD)
651651
if (ggml_cpu_has_neon() && ggml_cpu_has_dotprod()) {
652-
const block_q4_0x4 * b_ptr = (const block_q4_0x4 *)vx;
652+
const block_q4_0x4 * b_ptr = (const block_q4_0x4 *) vx;
653653

654654
for (int c = 0; c < nc; c += ncols_interleaved) {
655-
const block_q8_0 * a_ptr = (const block_q8_0 *)vy;
655+
const block_q8_0 * a_ptr = (const block_q8_0 *) vy;
656656
float32x4_t acc = vdupq_n_f32(0);
657657
for (int b = 0; b < nb; b++) {
658-
int8x16_t b0 = vld1q_s8((const int8_t *)b_ptr->qs);
659-
int8x16_t b1 = vld1q_s8((const int8_t *)b_ptr->qs + 16);
660-
int8x16_t b2 = vld1q_s8((const int8_t *)b_ptr->qs + 32);
661-
int8x16_t b3 = vld1q_s8((const int8_t *)b_ptr->qs + 48);
662-
float16x4_t bd = vld1_f16((const __fp16 *)b_ptr->d);
663-
664-
int8x16_t a0 = (int8x16_t)vld1q_dup_s64((const int64_t *)a_ptr->qs);
665-
int8x16_t a1 = (int8x16_t)vld1q_dup_s64((const int64_t *)a_ptr->qs + 1);
666-
int8x16_t a2 = (int8x16_t)vld1q_dup_s64((const int64_t *)a_ptr->qs + 2);
667-
int8x16_t a3 = (int8x16_t)vld1q_dup_s64((const int64_t *)a_ptr->qs + 3);
668-
float16x4_t ad = vld1_dup_f16((const __fp16 *)&a_ptr->d);
658+
int8x16_t b0 = vld1q_s8((const int8_t *) b_ptr->qs);
659+
int8x16_t b1 = vld1q_s8((const int8_t *) b_ptr->qs + 16);
660+
int8x16_t b2 = vld1q_s8((const int8_t *) b_ptr->qs + 32);
661+
int8x16_t b3 = vld1q_s8((const int8_t *) b_ptr->qs + 48);
662+
float16x4_t bd = vld1_f16((const __fp16 *) b_ptr->d);
663+
664+
int8x16_t a0 = (int8x16_t) vld1q_dup_s64((const int64_t *) a_ptr->qs);
665+
int8x16_t a1 = (int8x16_t) vld1q_dup_s64((const int64_t *) a_ptr->qs + 1);
666+
int8x16_t a2 = (int8x16_t) vld1q_dup_s64((const int64_t *) a_ptr->qs + 2);
667+
int8x16_t a3 = (int8x16_t) vld1q_dup_s64((const int64_t *) a_ptr->qs + 3);
668+
float16x4_t ad = vld1_dup_f16((const __fp16 *) &a_ptr->d);
669669

670670
int32x4_t ret0 = vdupq_n_s32(0);
671671
int32x4_t ret1 = vdupq_n_s32(0);

0 commit comments

Comments
 (0)