Spaces:
Sleeping
Sleeping
ggml-cpu: fix uncaught underscore terminators (llama/14023)
Browse files
ggml/src/ggml-cpu/ggml-cpu-impl.h
CHANGED
|
@@ -371,7 +371,7 @@ inline static int32x4_t ggml_vdotq_s32(int32x4_t acc, int8x16_t a, int8x16_t b)
|
|
| 371 |
#define vec_xor(a, b) ((a) ^ (b)) // Vector XOR
|
| 372 |
#endif
|
| 373 |
|
| 374 |
-
typedef signed
|
| 375 |
typedef unsigned char uchar8x16_t __attribute__((vector_size(16)));
|
| 376 |
|
| 377 |
typedef int8_t int8x16_t __attribute__((vector_size(16)));
|
|
@@ -382,10 +382,10 @@ typedef uint8_t uint8x16_t __attribute__((vector_size(16)));
|
|
| 382 |
typedef uint16_t uint16x8_t __attribute__((vector_size(16)));
|
| 383 |
typedef uint32_t uint32x4_t __attribute__((vector_size(16)));
|
| 384 |
|
| 385 |
-
typedef float
|
| 386 |
-
typedef double double64x2_t
|
| 387 |
|
| 388 |
-
typedef signed
|
| 389 |
typedef unsigned long long ulong64x2_t __attribute__((vector_size(16)));
|
| 390 |
|
| 391 |
typedef struct ggml_uint8x16x2_t {
|
|
|
|
| 371 |
#define vec_xor(a, b) ((a) ^ (b)) // Vector XOR
|
| 372 |
#endif
|
| 373 |
|
| 374 |
+
typedef signed char char8x16_t __attribute__((vector_size(16)));
|
| 375 |
typedef unsigned char uchar8x16_t __attribute__((vector_size(16)));
|
| 376 |
|
| 377 |
typedef int8_t int8x16_t __attribute__((vector_size(16)));
|
|
|
|
| 382 |
typedef uint16_t uint16x8_t __attribute__((vector_size(16)));
|
| 383 |
typedef uint32_t uint32x4_t __attribute__((vector_size(16)));
|
| 384 |
|
| 385 |
+
typedef float float32x4_t __attribute__((vector_size(16)));
|
| 386 |
+
typedef double double64x2_t __attribute__((vector_size(16)));
|
| 387 |
|
| 388 |
+
typedef signed long long long64x2_t __attribute__((vector_size(16)));
|
| 389 |
typedef unsigned long long ulong64x2_t __attribute__((vector_size(16)));
|
| 390 |
|
| 391 |
typedef struct ggml_uint8x16x2_t {
|