Skip to content

Commit 7cd5012

Browse files
committed
Fix merge
1 parent 4e44a5f commit 7cd5012

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

ggml/src/ggml-cpu/ops.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7877,7 +7877,7 @@ static void ggml_compute_forward_im2col_3d_f16(
78777877
dst_data[iic*KD_KH_KW + ikd * KH_KW + ikh*KW + ikw] = 0;
78787878
} else {
78797879
const float * const s = (const float *) ((const char *)src_data + iid*nb12 + iih*nb11 + iiw*nb10); // [ID, IH, IW]
7880-
dst_data[iic*KD_KH_KW + ikd * KH_KW + ikh*KW + ikw] = GGML_CPU_FP32_TO_FP16(*s);
7880+
dst_data[iic*KD_KH_KW + ikd * KH_KW + ikh*KW + ikw] = GGML_FP32_TO_FP16(*s);
78817881
}
78827882
}
78837883
}

ggml/src/ggml.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1933,7 +1933,7 @@ static const char * GGML_OP_NAME[GGML_OP_COUNT] = {
19331933
"GLU",
19341934
};
19351935

1936-
static_assert(GGML_OP_COUNT == 90, "GGML_OP_COUNT != 90");
1936+
static_assert(GGML_OP_COUNT == 91, "GGML_OP_COUNT != 91");
19371937

19381938
static const char * GGML_OP_SYMBOL[GGML_OP_COUNT] = {
19391939
"none",
@@ -2038,7 +2038,7 @@ static const char * GGML_OP_SYMBOL[GGML_OP_COUNT] = {
20382038
"glu(x)",
20392039
};
20402040

2041-
static_assert(GGML_OP_COUNT == 90, "GGML_OP_COUNT != 90");
2041+
static_assert(GGML_OP_COUNT == 91, "GGML_OP_COUNT != 91");
20422042

20432043
static_assert(GGML_OP_POOL_COUNT == 2, "GGML_OP_POOL_COUNT != 2");
20442044

koboldcpp.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@
7777
# extra_images_max = 4
7878

7979
# global vars
80-
KcppVersion = "1.99002"
81-
LcppVersion = "b6365-70"
80+
KcppVersion = "1.99003"
81+
LcppVersion = "b6387-75"
8282
IKLcppVersion = "IKLpr624"
83-
EsoboldVersion = "RMv1.17.29m"
83+
EsoboldVersion = "RMv1.17.291m"
8484
CudaSpecifics = "Cu128_Ar86_SMC2_DmmvX32Y1"
8585
ReleaseDate = "2025/10/07"
8686
showdebug = True

0 commit comments

Comments
 (0)