aboutsummaryrefslogtreecommitdiff
path: root/examples/benchmark/benchmark-q4_0-matmult.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/benchmark/benchmark-q4_0-matmult.c')
-rw-r--r--examples/benchmark/benchmark-q4_0-matmult.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/benchmark/benchmark-q4_0-matmult.c b/examples/benchmark/benchmark-q4_0-matmult.c
index 90f537f..84b0676 100644
--- a/examples/benchmark/benchmark-q4_0-matmult.c
+++ b/examples/benchmark/benchmark-q4_0-matmult.c
@@ -24,7 +24,7 @@
float tensor_sum_elements(struct ggml_tensor * tensor) {
float sum = 0;
- if (tensor->type==6) {
+ if (tensor->type==GGML_TYPE_F32) {
for (int j = 0; j < tensor->ne[1]; j++) {
for (int k = 0; k < tensor->ne[0]; k++) {
sum += ((float *) tensor->data)[j*tensor->ne[0]+k];