Skip to content

Commit a4e191f

Browse files
committed
cuda : fix fprintf format string (minor)
1 parent 8ed2a8e commit a4e191f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml-cuda.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9240,7 +9240,7 @@ bool ggml_cuda_compute_forward(struct ggml_compute_params * params, struct ggml_
92409240
if (tensor->op == GGML_OP_MUL_MAT) {
92419241
if (tensor->src[0]->ne[3] != tensor->src[1]->ne[3]) {
92429242
#ifndef NDEBUG
9243-
fprintf(stderr, "%s: cannot compute %s: src0->ne[3] = " PRId64 ", src1->ne[3] = " PRId64 " - fallback to CPU\n", __func__, tensor->name, tensor->src[0]->ne[3], tensor->src[1]->ne[3]);
9243+
fprintf(stderr, "%s: cannot compute %s: src0->ne[3] = %" PRId64 ", src1->ne[3] = %" PRId64 " - fallback to CPU\n", __func__, tensor->name, tensor->src[0]->ne[3], tensor->src[1]->ne[3]);
92449244
#endif
92459245
return false;
92469246
}

0 commit comments

Comments
 (0)