Skip to content

Commit 68fcb47

Browse files
committed
ggml : fix compile warnings (#0)
ggml-ci
1 parent 8a43e94 commit 68fcb47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ggml/src/ggml.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5501,7 +5501,7 @@ static void ggml_compute_backward(
55015501
fprintf(stderr, "%s: unsupported unary op for backward pass: %s\n",
55025502
__func__, ggml_unary_op_name(ggml_get_unary_op(tensor)));
55035503
GGML_ABORT("fatal error");
5504-
} break;
5504+
} //break;
55055505
}
55065506
} break;
55075507
case GGML_OP_CROSS_ENTROPY_LOSS: {
@@ -5517,7 +5517,7 @@ static void ggml_compute_backward(
55175517
default: {
55185518
fprintf(stderr, "%s: unsupported ggml op for backward pass: %s\n", __func__, ggml_op_name(tensor->op));
55195519
GGML_ABORT("fatal error");
5520-
} break;
5520+
} //break;
55215521
}
55225522

55235523
GGML_ASSERT(!src0_needs_grads || ggml_are_same_shape(src0, cgraph->grads[isrc0]));

0 commit comments

Comments
 (0)