From e948f7e58c2d8071c9148e618a4591c15cd87f51 Mon Sep 17 00:00:00 2001 From: Austin Sullivan Date: Fri, 7 Jun 2024 09:02:34 -0700 Subject: [PATCH] add back gelu --- index.bs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/index.bs b/index.bs index 5b476283..a4536eea 100644 --- a/index.bs +++ b/index.bs @@ -2755,6 +2755,7 @@ Compute the + ### gemm ### {#api-mlgraphbuilder-gemm} Calculate the [general matrix multiplication of the Basic Linear Algebra Subprograms](https://en.wikipedia.org/wiki/Basic_Linear_Algebra_Subprograms#Level_3). The calculation follows the expression `alpha * A * B + beta * C`, where `A` is a 2-D tensor with shape [M, K] or [K, M], `B` is a 2-D tensor with shape [K, N] or [N, K], and `C` is [=unidirectionally broadcastable=] to the shape [M, N]. `A` and `B` may optionally be transposed prior to the calculation.