ggml_glu_split: Generic GLU Split (Graph)
Description
Creates a graph node for GLU with separate input and gate tensors.
Unlike standard GLU which splits a single tensor, this takes two separate tensors.
Usage
ggml_glu_split(ctx, a, b, op)
Value
Tensor with same shape as input tensors
Arguments
- ctx
GGML context
- a
Input tensor (the values to be gated)
- b
Gate tensor (same shape as a)
- op
GLU operation type (GGML_GLU_OP_REGLU, GGML_GLU_OP_GEGLU, etc.)