Skip to content

Commit 5edfe78

Browse files
committed
...
1 parent dc082a6 commit 5edfe78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml/src/ggml-cpu/vec.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1432,7 +1432,7 @@ inline static void ggml_vec_tri_f32(const int n, const int r, float * dst, const
14321432
case GGML_TRI_TYPE_LOWER: cmp = i < r; break;
14331433
case GGML_TRI_TYPE_LOWER_DIAG: cmp = i <= r; break;
14341434
case GGML_TRI_TYPE_UPPER: cmp = i > r; break;
1435-
case GGML_TRI_TYPE_UPPER_DIAG:
1435+
case GGML_TRI_TYPE_UPPER_DIAG:
14361436
default: cmp = i >= r; break;
14371437
}
14381438
dst[i] = cmp ? (keep_org_val ? src[i] : c) : 0.0f;

0 commit comments

Comments
 (0)