Skip to content

Commit 6c5e633

Browse files
committed
Remove duplicate cases.
1 parent eb0393a commit 6c5e633

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

ggml/src/ggml-cpu/ops.cpp

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -9108,22 +9108,6 @@ void ggml_compute_forward_unary(
91089108
{
91099109
ggml_compute_forward_xielu(params, dst);
91109110
} break;
9111-
case GGML_UNARY_OP_FLOOR:
9112-
{
9113-
ggml_compute_forward_floor(params, dst);
9114-
} break;
9115-
case GGML_UNARY_OP_CEIL:
9116-
{
9117-
ggml_compute_forward_ceil(params, dst);
9118-
} break;
9119-
case GGML_UNARY_OP_ROUND:
9120-
{
9121-
ggml_compute_forward_round(params, dst);
9122-
} break;
9123-
case GGML_UNARY_OP_TRUNC:
9124-
{
9125-
ggml_compute_forward_trunc(params, dst);
9126-
} break;
91279111
case GGML_UNARY_OP_EXPM1:
91289112
{
91299113
ggml_compute_forward_expm1(params, dst);
@@ -9132,10 +9116,6 @@ void ggml_compute_forward_unary(
91329116
{
91339117
ggml_compute_forward_softplus(params, dst);
91349118
} break;
9135-
case GGML_UNARY_OP_XIELU:
9136-
{
9137-
ggml_compute_forward_xielu(params, dst);
9138-
} break;
91399119
default:
91409120
{
91419121
GGML_ABORT("fatal error");

0 commit comments

Comments
 (0)