Skip to content

Commit 840f3d9

Browse files
authored
Merge: Fix GGML_OP_COUNT assertion for RPC (#65)
Fix GGML_OP_COUNT assertion for RPC
2 parents dd59093 + ecc6d89 commit 840f3d9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ggml/include/ggml-rpc.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ extern "C" {
88

99
#define RPC_PROTO_MAJOR_VERSION 3
1010
#define RPC_PROTO_MINOR_VERSION 6
11-
#define RPC_PROTO_PATCH_VERSION 1
11+
#define RPC_PROTO_PATCH_VERSION 2
1212

1313
#ifdef __cplusplus
14-
static_assert(GGML_OP_COUNT == 96, "GGML_OP_COUNT has changed - update RPC_PROTO_PATCH_VERSION");
14+
static_assert(GGML_OP_COUNT == 97, "GGML_OP_COUNT has changed - update RPC_PROTO_PATCH_VERSION");
1515
#endif
1616

1717
#define GGML_RPC_MAX_SERVERS 16

0 commit comments

Comments
 (0)