Skip to content

Commit

Permalink
ggml : add GGML_OP_LEAKY_RELU to ggml_compute_backward
Browse files Browse the repository at this point in the history
  • Loading branch information
slaren committed Dec 10, 2023
1 parent ad5d579 commit b9a77fa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/ggml.c
Original file line number Diff line number Diff line change
Expand Up @@ -15260,6 +15260,10 @@ static void ggml_compute_backward(struct ggml_context * ctx, struct ggml_tensor
{
GGML_ASSERT(false); // TODO: not implemented
} break;
case GGML_OP_LEAKY_RELU:
{
GGML_ASSERT(false); // TODO: not implemented
} break;
case GGML_OP_FLASH_ATTN:
{
struct ggml_tensor * flash_grad = NULL;
Expand Down

0 comments on commit b9a77fa

Please sign in to comment.